in reply to Re: Applying regexes to streams: Perl enhancement idea
in thread Applying regexes to streams: Perl enhancement idea
No. That would prevent the regex from succeeding at end-of-string. What I want is to prevent the regex from backtracking due to end-of-string. This can happen at any point in the regex so there is no one place in the pattern that you can put something to cause it to happen. It would be like putting a special token at the end of the string such that every part of the regex treats that token specially.
It could/should actually do even more than that. Even "mel" =~ /l+/z should fail because it terminated the search due to the end-of-string and the next bytes on my stream might well be "low" and so I'd want that regex to match both "l"s.
- tye
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Applying regexes to streams: Perl enhancement idea
by Aristotle (Chancellor) on Jan 08, 2003 at 08:15 UTC | |
by tye (Sage) on Jan 08, 2003 at 17:06 UTC | |
by Aristotle (Chancellor) on Jan 11, 2003 at 18:44 UTC | |
by tye (Sage) on Jan 13, 2003 at 00:39 UTC |