Beefy Boxes and Bandwidth Generously Provided by pair Networks DiBona
more useful options
 
PerlMonks  

Re: Re: Common Regex Gotchas

by Anonymous Monk
on Nov 26, 2001 at 22:36 UTC ( [id://127656]=note: print w/replies, xml ) Need Help??

This is an archived low-energy page for bots and other anonmyous visitors. Please sign up if you are a human and want to interact.


in reply to Re: Common Regex Gotchas
in thread Common Regex Gotchas

Sorry - re-reading it, I realized that I accidently inserted html tags that are not showing up.

I found the Greedy section to be quite confusing. First of all, I think you probably have a couple slash-s'es in your html that is causing it to not print and makes the last couple paragraphs very difficult to understand and read.

Also, I'm still confused about why there is a match at all in the first example. Why doesn't the engine continue backwards past the whitespace and look for a <\/tag> string?

Finally, why does the last example (still in the Greedy section) work? If, when creating the example string, I carraige return after the <\/tag>, there shouldn't be a whitespace to match on, right?

Finally, finally, thanks for putting this together... it's really speeding my ramp along...

Replies are listed 'Best First'.
Re: Re: Re: Common Regex Gotchas
by chromatic (Archbishop) on Nov 26, 2001 at 23:47 UTC
    Why doesn't the engine continue backwards past the whitespace and look for a <\/tag> string?

    Because the engine prefers the longest match that starts at the leftmost possible position. When it hits .*, it jumps all the way to the end of the string and then backtracks, trying to match the next necessary character. Because it's backtracking, it matches </tag> at the end of the string. That fits the pattern, so it doesn't continue backtracking to find a shorter match.

    If, when creating the example string, I carraige return after the <\/tag>, there shouldn't be a whitespace to match on, right?

    The /s flag allows the '.' token to match newlines. Adding the minimal token '?' avoids the jump-to-end-then-backtrack behavior. It works like you'd expect, trying to match as few characters as possible.

    Does that clear it up? I've also touched up the formatting somewhat.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://127656]
help
Sections?
Information?
Find Nodes?
Leftovers?
    Notices?
    hippoepoptai's answer Re: how do I set a cookie and redirect was blessed by hippo!
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.