You would replace

if ( $row =~ $re )
with
while ( $row =~ /$re/g )

Certain flags control how a pattern is parsed or compiled. Since these are associated with the pattern, they can be provided to qr// and (?:).

These are: msixpodualn.

(It's surprising to find "p" on this list. It's weird. But "p" doesn't do anything since 5.20, so we can pretend it's not there.)


Certain flag affects how the operator itself works. These are provided to the operator itself.

For m//, these are: gc.

For s///, these are: gcer.

msixpodualn can also be provided to these, but they won't be recursively applied to embedded compiled patterns. (The same goes for qr//.)


Therefore, you want to add "g" to the match operator implied by $row =~ $re, and it would result in using $row =~ /$re/g.

Note that /$re/ doesn't cause the pattern to be stringified and re-compiled as it would be if it was interpolated into a larger pattern.


In reply to Re: Use global flag when declaring regular expressions with qr? by ikegami
in thread Use global flag when declaring regular expressions with qr? by unmatched

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



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.