in reply to Re^6: This regexp made simpler
in thread This regexp made simpler
Example:
Here I added an A to the end, which causes backtracking when there's no A after the first Z. Which in turn allows a match that was forbidden by your rules.$ perl -wE 'say "yes" if "A BCZD ZA" =~ /^A(\s.*?)?ZA/' yes
(Update: This is a general problem when translating "may not occur inbetween" to "minimum match": it's only the same under certain very fixed conditions. You can "rescue" such a solution by putting it in (?>...) non-backtracking groups, but I still recommend against it).
So maybe your example wasn't actually wrong (and I apologize for having called it so without any proof), but it's surely not very maintainable, because a very simple, innocent change can break it.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^8: This regexp made simpler
by rovf (Priest) on Apr 26, 2010 at 12:06 UTC | |
|
Re^8: This regexp made simpler
by rubasov (Friar) on Apr 26, 2010 at 14:31 UTC |