in reply to Re: Progressive matching w/substitutions
in thread Progressive matching w/substitutions
Finally, this is really the task of the "e" modifier.Now you're getting directly to my point. Let's now rewrite this to using a while loop, as in:
$string =~ s/(abc)/ sprintf("%s def(%s)", $1, $x++) /eig;
while ($string =~ s/(abc)/ sprintf("%s def(%s)", $1, $x) /eig) { die "oops" if $x++ > 10; }
Why doesn't this work? If you remove the 'g' modifier, it still doesn't work -- it just runs in an infinite loop.
I think what I'm getting to is that I assumed that the "progressive" aspect of regex applied to both matching and substitution, since each of those has the common root of matching. (ie., substitution requires at least a match in order to do the substitution) If that were the case, then the above should work. Because it doesn't, the code has to be downgraded to using multiple lines that include the use of pos and such. In the live code where this applies, calls to other functions have to be made, which is why there has to be a loop, not just a simple s/// expression as your example illustrates. Granted, the "substitution" aspect can be as simple as you have, but the value of $x is derived from other code and various tests and manipulations. That's why my "simple" example uses $x++ inside the while loop, to illustrate that it has to be separate from the s/// part.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Progressive matching w/substitutions
by ikegami (Patriarch) on Aug 09, 2008 at 17:18 UTC | |
by argv (Pilgrim) on Aug 10, 2008 at 17:09 UTC | |
by tye (Sage) on Aug 10, 2008 at 17:17 UTC | |
by argv (Pilgrim) on Aug 10, 2008 at 21:33 UTC | |
by tye (Sage) on Aug 11, 2008 at 00:46 UTC | |
|