|
Regular Expression - Topic profile
Topic profile page for Regular Expression.
This page has aggregated data from forum posts, threads, listings, online discussions, newsgroups, messageboards, and other online sources which contain user generated content for the term: Regular Expression.
Search discussions about regular expression on BoardReader!
|
Latest threads on regular expression:
|
Started 3 weeks ago (2008-08-08 20:29:00)
by _adapa
I have a regular expression and I am trying to find matches in a string. The regular expression: # [^ [^ 
|
|
Started 1 month, 1 week ago (2008-07-17 22:50:00)
by camerongrice
|
|
Started 2 months, 3 weeks ago (2008-06-03 23:20:00)
by Shaitan00
I am trying to find a way to correctly use Regular Expression ( RegEx) to decompose a specific formatted string into 3 values, here are 3 samples of the strings in question. "1 CASH 1.00 $ 0.21 $" "1 CASH 1.50 $ 0.22 $" "1 CASH 10.50 $ 100.50 $" .. etc .. This format will never change, my goal is to be able to automatically ... 
|
|
Started 11 hours, 22 minutes ago (2008-08-29 14:04:00)
by IQ
I want to block a large number of URLs that would be something like: index.main_page=popup_image&pID=716,index.main _page=popup_image&pID=844 etc I'm struggling with this regular expression and wonder which is correct (if any) ? Disallow:/index.main_page=popup_image&pID=&quo t;*" Disallow:/index.php?main_page=popup_image"*&q uot; Disallow:/index.php?main_page=popup_image&pID. .. 
|
|
Started 18 hours, 18 minutes ago (2008-08-29 07:08:00)
by mgamberi
Hi, I'm new with python. I need to create a regular expression that do this. The regular expression start with CREATE TABLE , in the middle of the sentence there is CLOB , and the sentence ends with the simbol ; , like this: CREATE TABLE PIPPO (ID NUMBER, NOME CLOB ,COGNOME VARCHAR2(30) ; Is it correct: reg = re.compile(r'(^CREATE TABLE.*CLOB)(?P... 
|
|
Started 1 day, 13 hours ago (2008-08-28 12:04:00)
by raneeshak
hi All, i am new to the regular expression like stuff. 
|
|
Started 1 day, 17 hours ago (2008-08-28 08:24:00)
by hamzaKhara
Hi, we need to validate email addresses against free domains like hotmail,yahoo and gmail etc using Regular expression validation control, that is if the user write free email address an error message should come up. So what is the validation expression should be? 
|
|
Started 1 day, 20 hours ago (2008-08-28 05:01:00)
by nik1984
[ Log in to get rid of this advertisement] using regular expression in expect scripts i wrote expect script that will check string out put of "show clock" command but i want to validate this using regular expression...how i can do validation using expect script & store output from expect command. ================================== sample expect script #!/usr... 
|
|
Started 1 day, 20 hours ago (2008-08-28 04:49:26)
by <[Wapsi]>
Hi all, I wrote a abstract layer for my database objects but recently I bumped into a problem which I'm not able to solve up till now. I'm not searching for an easy solution here, but maybe someone can point me in the right direction. For parsing of template generated content I need some expressions but I can't formulate them correctly. Basically, what I want to do is to fetch ... 
|
|
Started 2 days, 9 hours ago (2008-08-27 16:23:45)
by hoochie
Ik gebruik volgende code voor een vinden van een emailadres Code: RegExpr := nil; try RegExpr := TRegExpr.Create; if RegExpr nil then begin RegExpr.Expression := '^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$'; if RegExpr.Exec(ssIn.DataString) then repeat Form1.Memo2.Lines.Add(RegExpr.Match[1]); until not RegExpr.ExecNext; end;... 
|
|
|
Hot threads on regular expression:
|
Started 1 week ago (2008-08-22 13:16:00)
by Graham Mayor
Of course it does! -- >< >< >< >< >< >< > Your web site, while thorough, does not address this problem. > > "Graham Mayor" wrote: > 
|
|
Started 8 hours, 8 minutes ago (2008-08-29 17:18:00)
by tagnu
Quote: Originally Posted by Cranford Code: var nStr1 = "http://uk.wrs.yahoo.com/_ylt=A8pWBj2w5bNIa84 A54S7HAx.;_ylu=X3oDMTEwZTl2dThqBHNlYwNzcgRwb3MDNwR jb2xvA2luMl9pbnRsBHZ0aWQD/SIG=11kp4e70q/EXP=121983 5696/**http%3A//www.example.com/index.html"; var nStr2 = "http://uk.wrs.yahoo.com/_ylt=A8pWBj2w5bNIa84 A5YS7HAx.;_ylu=... 
|
|
Started 3 days, 14 hours ago (2008-08-26 10:28:00)
by hadad
Thanks a lot, I know that the pattern works well in the way you use it for getting the attributes inside these two braces {} but what I've failed to do is to match the whole rule like this: #DTEST { border-style : solid ; border-width : thin ; position:relative; right:10px; left:900px; width:50px; } This is the whole pattern: [\\.#]?[a-zA-Z0-9_]+[\t\\s... 
|
|
Started 1 day, 8 hours ago (2008-08-28 16:48:00)
by Muneeb R. Baig
Sorry, I don't want to hurt you. Infact I was replying to the orignal post. Is there any way to move my post to the orignal post? 
|
|
Started 2 days, 7 hours ago (2008-08-27 17:41:00)
by Henk Schreij
@hoochie: Je kunt IsGeenEmail gebruiken om per woord te controleren of het een emailadres is, en alleen als het een email is toevoegen. Hier een stukje voorbeeldcode: Code: procedure TForm1.BitBtn1Click(Sender: TObject); function IsGeenEmail(sEmail: string ):Boolean; {geen controle op leeg, eerst trim} var S: string ; i: Integer; begin Result:= True; ... 
|
|
Started 4 days, 14 hours ago (2008-08-25 11:21:00)
by xhsoldier
Quote: Originally Posted by jethro.fn Yes, using the re module, like in standard Python 2.2. Great! thanks! 
|
|
Started 1 week ago (2008-08-22 09:07:00)
by Guffa
Why the apostrophes? An alphanumeric string should not contains apostrophes, should it? [\da-zA-Z ] 
| |