in reply to Re: Two-dimensional match/regex?
in thread Two-dimensional match/regex?
And since the .+ is greedy, the C will never match.
Wrong. A regex will backtrack the + until the rest of the pattern matches. If the pattern doesnt contain a C then it will fail. The greedyness would only apply if there were more than one C's contained in the string. It would ignore all but the last.
Methinks you owe rob_au an apology and that you should reread perlre.
my @strings=("/^\\\n.....................C", "/^\\\n............C........C", "/^\\\n.....................B", "Foobar"); /(\/\^\\\n.+C)/ && print "---\n\n$1\n---\n\n" foreach @strings; __END__ --- /^\ .....................C --- --- /^\ ............C........C ---
Yves / DeMerphq
---
Writing a good benchmark isnt as easy as it might look.
|
|---|