Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: How to match last character of string, even if it happens to be a newline?

by jwkrahn (Abbot)
on May 12, 2019 at 18:48 UTC ( [id://1233663]=note: print w/replies, xml ) Need Help??


in reply to How to match last character of string, even if it happens to be a newline?

You don't really need a regular expression just to get the last character in a string:

$ perl -e'use Data::Dumper; $Data::Dumper::Useqq = 1; my $text_1 = "a\ +nb\nc\n"; print Dumper $text_1, "Last character: " . substr $text_1, +-1' $VAR1 = "a\nb\nc\n"; $VAR2 = "Last character: \n";
  • Comment on Re: How to match last character of string, even if it happens to be a newline?
  • Download Code

Replies are listed 'Best First'.
Re^2: How to match last character of string, even if it happens to be a newline?
by LanX (Saint) on May 12, 2019 at 19:03 UTC
    On a side note :

    chop does the same job but is destructive and requires an lvalue.

    Cheers Rolf
    (addicted to the Perl Programming Language :)
    Wikisyntax for the Monastery FootballPerl is like chess, only without the dice

Re^2: How to match last character of string, even if it happens to be a newline?
by Allasso (Monk) on May 12, 2019 at 20:58 UTC
    indeed!

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1233663]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (4)
As of 2024-04-24 04:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found