Example code:
my $string = q(
Outside.
{tag}
Inside level 1.
{tag}
Inside level 2.
{/tag}
Inside level 1.
{/tag}
Outside.
);
$string =~ s/\{tag\}(.+)\{\/tag\}/--Marked--\n$1\n--EndMarked--/gis;
Right, so that matches the first {tag} and the last {/tag}.
But nothing inbetween.
If I change the pattern to
/\{tag\}(.+?)\{\/tag\}/
it matches the first {tag} and the first {/tag}, but because the second {tag} was inside the block just matched, it's passed over when seeking the next {tag}.
Le sigh.
The only way I can find to get this thing working as desired is to wrap the pattern match in a while loop:
while($string =~ s/\{tag\}(.+)\{\/tag\}/--Marked--\n$1\n--EndMarked--/gis) { next; }
That's a sub-optimal solution for the problem at hand, where there are dozens of these specialized markup tags.
Is there a better/quicker/easier way to get this done? Use of *ANY* module not standard in 5.004 is out of the question due to the needs of the app's audience. (I was looking at Parse::RecDecent...)
I thank you for your wisdom.
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.