Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Re^3: regex for string

by arkturuz (Curate)
on Aug 18, 2009 at 09:36 UTC ( [id://789402]=note: print w/replies, xml ) Need Help??


in reply to Re^2: regex for string
in thread regex for string

It won't match what you want because the '*' quantifier is greedy, and the '?' can match 0 or 1 times. So, the '*' matches all of the it can, and the last '?' matches 0 times; so the match is successful. You have to force '*' to give something back to the rest of the regex by replacing '?' with '{1}' for example.

Replies are listed 'Best First'.
Re^4: regex for string
by saranperl (Initiate) on Aug 18, 2009 at 11:06 UTC
    good explaination... thanks

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://789402]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (3)
As of 2024-04-20 08:23 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found