Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: When a regexp with /g needs to be run .. twice

by Laurent_R (Canon)
on Mar 02, 2018 at 22:00 UTC ( [id://1210268]=note: print w/replies, xml ) Need Help??


in reply to When a regexp with /g needs to be run .. twice

The g modifier does not tell the regex engine to start matching again from the beginning, but to continue matching from where you've arrived.

The following regex:

$foo =~ s/([:,{])(.)/$1 $2/g;
is matching two characters, i.e. :{, so that the regex engine will continue on the next character, i.e. ", which cannot be matched by the regex. So, in short, your regex is not applied a second time on your input string. It has gotten too far already in your input string.

If you want the regex engine to repeatedly match each of the input characters, please remove the (.) part:

$foo =~ s/([:,{])/$1 /g;
For example (demonstrated under the Perl debugger):
DB<1> $foo = ':{"'; DB<2> $foo =~ s/([:,{])/$1 /g; DB<3> print $foo : { "
Update:: this is essentially the same solution as toolic's proposal, I did not notice until I reviewed the thread after having posted my response.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1210268]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (5)
As of 2024-03-29 00:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found