I'm having difficulty matching the last character in a string if it happens to be a \n. I would have naively thought
m@(.)$@s would work, but instead if the last character is \n it matches the character preceding. If I explicitly use \n it will match, but I can't seem to do it conditionally. I tried using an OR, but behaves the same as using the . (dot). I tried using m flag (without g), thinking perl starts evaluation at the end of the string and I might get it that way.
Here is what I've tried:
print('String: a\nb\nc\n' . "\n");
my $text_1 = "a\nb\nc\n";
$text_1 =~ m@(.)$@s;
print("----------\n>" . $1 . "<\n");
$text_1 =~ m@(\n)$@s;
print("----------\n>" . $1 . "<\n");
$text_1 =~ m@(\n|.)$@s;
print("----------\n>" . $1 . "<\n");
print("\n" . 'String: a\nb\nc\n - multiline match:' . "\n");
$text_1 = "a\nb\nc\n";
$text_1 =~ m@(.)$@sm;
print("----------\n>" . $1 . "<\n");
$text_1 =~ m@(\n)$@sm;
print("----------\n>" . $1 . "<\n");
$text_1 =~ m@(\n|.)$@sm;
print("----------\n>" . $1 . "<\n");
Here's what I get:
String: a\nb\nc\n
----------
>c<
----------
>
<
----------
>c<
String: a\nb\nc\n - multiline match:
----------
>a<
----------
>
<
----------
>a<
My searching on this issue has not come up with any answers.
Help?
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.