You are close, first thing - you have to undefine the
input record separator if you wish to slurp up entire
blocks of lines, otherwise you will only get data up to
the first new line encountered:
undef $/;
$current = <DATA>;
$start = '<!---CURCON-->';
$end = '<!---END CURCON-->';
my ($match) = $current =~ m/$start(.*)$end/s;
print $match;
__DATA__
stuff i don't want
<!---CURCON-->
stuff i do want
<!---END CURCON-->
more stuff i don't want
You are correcly using the 's' modifier for your regex,
but instead of using s///, use m// and capture $1 in
another variable. The trick is, you have to catch $1 in
array context:
my ($match) = $current =~ m/$start(.*)$end/s; # note the parens around
+ $match
else $match will be equal to the number of matches found.
Now $match will contain a newline at the beginning as well
as one at the end:
$match =~ tr/\n//d;
# or
$match =~ s/\n//g;
Jeff
R-R-R--R-R-R--R-R-R--R-R-R--R-R-R--
L-L--L-L--L-L--L-L--L-L--L-L--L-L--
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.