I have a progarm where I basically run two regex matches in a row (on the same document). It seems like my ability to match depends on the ordering of the matches. The code looks something like this:
if ($content =~ m%match (pattern)%g) {
$firstVariable = $1 ;
} #end if
if ($content =~ m%match (pattern2)%g) {
$secondVariable = $1 ;
} #end if
If I put one of the ifs first, both match, but if I reverse the ordering of the ifs, only one matches (the one first in order).
What's going on? Do I need to "reset" the search back to the beginning of the $content string? If so, how to do? Thanks.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.