Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

RE: RE: RE: Quantifiers in regular expressions

by le (Friar)
on Jul 20, 2000 at 11:30 UTC ( [id://23335]=note: print w/replies, xml ) Need Help??


in reply to RE: RE: Quantifiers in regular expressions
in thread Quantifiers in regular expressions

Yeah, AM escapes the wrong chars. Let's put it right. If you say:
$string =~ /<.*>(.*)<\/.*>/;
on a string "<foo>...</foo><bar>...</bar>" you get everything between "<foo>" and "</bar>", because the "*" modifier is "greedy", which means it tries to match as much as possible. A "." in a regex matches anything, so ".*" matches until the end of the string. Then the rest of the regex is evaluated, done by backtracking (the regex machine is now at the end of the string and goes back one by one until it finds a match). I hope this was correct.

Update:
Damn HTML escaping :) I fixed it, so the strings actually show up.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-16 18:57 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found