Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
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.

In reply to Re: When a regexp with /g needs to be run .. twice by Laurent_R
in thread When a regexp with /g needs to be run .. twice by talexb

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (8)
As of 2024-04-23 13:14 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found