Why this code can't get the second match ...

Because the  /g modifier in scalar context (which is supplied by evaluating the match as part of an  if or  while condition expression) will cause an  m//g match to match only once per evaluation. The  if block only executes once if the condition is true. The  while block continues to execute until the conditional is no longer true.

c:\@Work\Perl\monks>perl -wMstrict -le "my $s = qq{foo <u> match \n the first </u> bar <u> second \n match </ +u> baz}; print qq{[[$s]] \n}; ;; if ($s =~ m{ <u> (.*?) </u> }xmsg) { print qq{if: '$1'}; } print ''; ;; pos $s = 0; while ($s =~ m{ <u> (.*?) </u> }xmsg) { print qq{while: '$1'}; } " [[foo <u> match the first </u> bar <u> second match </u> baz]] if: ' match the first ' while: ' match the first ' while: ' second match '

Note: The  pos $s = 0; statement is needed in the example because each string keeps track of its own match position, and that match position is used in  /g matching. Try eliminating the statement from the code and see what happens. Also try printing pos at various strategic points in execution.

Update: Also look in Regexp Quote-Like Operators in perlop for discussion of  m/PATTERN/msixpodualgc and look for the phrase 'In scalar context, each execution of "m//g" ...'     (Update: See also Global matching in perlretut.)


Give a man a fish:  <%-{-{-{-<


In reply to Re^3: Matching text between tags by AnomalousMonk
in thread Matching text between tags by Anonymous Monk

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.