Re: Extracting values from capturing groups in regex Programming Software Development by AndreRet … quantifiers - [Minimal or non-greedy quantifiers](Regular expressions are generally considered greedy because an expression with repetitions will attempt to match as… regular expression Programming Web Development by abhijit_2 regular expression that accept only letters OR numbers. Regular expression Programming Web Development by Slammer Hi, my problem is in regular expression. I need to catch from html code hyperlink tag's … Re: Regular expression Programming Web Development by edwinhermann [QUOTE=Slammer;1123668]Hi, my problem is in regular expression. I need to catch from html code hyperlink tag's … Regular expression beginner Programming Software Development by arindam31 Regular Expression (RE) They can be used with string operations. Using this, … a p.iiiigand no gbng gtrg ghgg') p.i Slash ( \ ) Regular expressions use the backslash character ('\') to indicate special forms or… Regular expression matching in a string Programming Software Development by roverphoenix Regular expression pattern match in a string, I only checked with * as wild card, other wild card characters are easy implement but I havent done that. any problems you can email me @ [email]rramaswa@usc.edu[/email] platform - Unix/Linux, havent tested in windows, should'nt be a problem unless some standard header files are missing. Regular Expression Programming Web Development by knittingguy Hi all, I am having a little problem with regular expression. I have a change password application and I want to … sure the password contains at least one numeric character. The regular expression that I am using is, [a-zA-Z]+[0-9… Regular expression Programming Web Development by sumangala Hi all,I am trying for validation using regular expression for Indian mobile number. Simply i have tried for"^[8,9]{1}[0-9]{9}$" and some others also but it is not working. I want regular expression for: 10 digit mobile number starts with 8 or 9 Re: Regular expression Programming Web Development by samaru > Hi all,I am trying for validation using regular expression for Indian mobile number. > Simply i have tried for&… also > but it is not working. > I want regular expression for: > 10 digit mobile number > starts with 8… regular expression help Programming Software Development by deadsolo Hi there everyone, I am having some difficulties getting a regular expression to work. I have a line of text with 5 ….676875527 12.76832461 2.725877787 9.275756545 Here is the regular expression I came up with(I'm a noob at regexs… Regular Expression Programming Web Development by prem2 Hi guys, I am struggling with regular expression.Can you please suggest the regular expression for the below patterns. I have tried many times with… Regular expression Programming Software Development by AhmedGhazey …’t. Can it be done using traditional regular expression?!! the question what is the regular expressions that solve this problem I'm new… Regular expression Programming Software Development by Nihar Hi there, Does any one know a Perl regular expresson to ignore specific string from a log file. For … i want to use this simple unix command using perl regular expression egrep -i -n "error|fatal" logfile.log |\egrep… Re: Regular expression Programming Software Development by YUPAPA [QUOTE=Nihar]Hi there, Does any one know a Perl regular expresson to ignore specific string from a log file. For … i want to use this simple unix command using perl regular expression egrep -i -n "error|fatal" logfile.log |\egrep… Regular Expression Help please! Programming Software Development by sid99 Hi, I am quite new to regular expression and I am kinda stuck on this question. I am … correct answer. Thanks, [B]heres the question: [/B] Write down regular expressions that define a pattern to recognise a decimal literal… Regular Expression Programming Web Development by sonia sardana … characters in textbox not numbers.For dat I use Regular Expression Validator,But even after dat numbers are entering. […" runat="server" ErrorMessage="This expression does not validate." ControlToValidate="TextBox1"… regular expression Programming Web Development by benjaminFowl87 Could any wiz at regular expression write an expression that will check whether a string matches this format number=string must have the =sign included, the number can be anything up 3 numbers and the string can contain any characters this would very much apreciated i've been tryin this d*3/=/{aA-zZ}$/ thanks Re: Regular expression Programming Software Development by Nihar …; i believe it's clear now. I'm looking for regular expression to parse this kinda log file. i can simply use… Re: Regular Expression Programming Software Development by trickykid … me in finding out any good and quick ebook on Regular Expression on PERL . Vinay[/QUOTE] I'd recommend the RegExpressions book… somewhere or online with their Safari online suite. But learning regular expressions shouldn't have to pertain to Perl books, any… Re: Regular expression Programming Web Development by peter_budo Here is [URL="http://java.sun.com/docs/books/tutorial/essential/regex/"]Sun tutorial[/URL] on regular expressions and here are others results from [URL="http://www.google.co.uk/search?hl=en&q=java+regular+expression+tutorial&btnG=Search&meta="]google[/URL] Re: Regular expression Programming Software Development by vinnijain Thanks a lot Ryshad......... :) Can you give me the links from where you read the regular articles of regular expression..... Provide some guidance so that I may also learn new things............ regular expression Programming Web Development by paradox814 so I am trying to write a regular expression lets just take this case for an example: [code]^[0-9a-z]{5,9}$[/code] OR an empty string, how would I add that part? I tried stuff like:[code]^([0-9a-z]{5,9}|[]{0})$[/code]but to no avail, any ideas? Re: regular expression Programming Web Development by fisheye My suggestion would be to avoid putting so much overhead in the regular expression engine for such a simple test. You can accomplish what you want in PHP by doing something like: [PHP] # Assuming you are testing $string... if(preg_match('/^[0-9a-z]{5,9}$/',$string) || strlen($string) < 1) { # Do things here. } [/PHP] How about that? Regular Expression Programming Software Development by msvinaykumar Hi, Please help me in finding out any good and quick ebook on Regular Expression on PERL . Vinay regular expression Programming Web Development by Taffd Is it possible to include the character < in a regular expression? I don't seem to be able to find a reference to it anywhere and am unable to build a regex with just this one character. Re: regular expression Programming Web Development by digital-ether …]Is it possible to include the character < in a regular expression? I don't seem to be able to find a… Regular expression Programming Web Development by lkoru Hi , Can please some one help me out in writing the Regular Expression pattern for <input type="hidden" id="some-id" name="some-name" value="some-value" . Thanks in Advance Regular Expression help Programming Software Development by metalla_nz …;br>PLATFORM<br>[/CODE] I need a regular expression to parse out the relevant bits in caps Ive been… Regular expression Programming Software Development by marcinkuptel Hi, Is there a way to split the string: 'Autocolli\^sion:No^Pack\^age:10DB15' on '^' character, but not if it follows a backslash? I have tried a regular expression like '[^\\]\^' but it removes also the 'o' in 'No'. Marcin Regular expression Programming Software Development by vinnijain … have used toolbar Can anyone tell me how to create regular expression for above together. The code which I am using is…