In Perl regex, how can I break from /ge loop..?
Let's say the code is:
s/\G(foo)(bar)(;|$)/{ break if $3 ne ';'; print "$1\n"; '' }/ge;
...break here doesn't work, but it should illustrate what I mean.
|
|
Generally, I would write this as a
The caveat with this method is that your search/replace will start at the beginning each time, which may matter depending on your regex. If you really wanted to do it in the regex, you could write a function that returns an unmodified string if you reached your end point, such as a count in this case:
If I knew your specific case, I could probably provide a more helpful example. |
||||
|
|
|
You can use some experimental features to emulate a break statement, the Perl documentation for some of these features warn that they may change in future versions of Perl.
This will print A piece wise explanation:
So when |
|||
|
|