Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

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 15:43 UTC ( [id://1233653]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    print('String: a\nb\nc\n' . "\n");
    $text_1 = "a\nb\nc\n";
    $text_1 =~ s@(\n)$@@s;
    print("----------\n>" . $1 . "<\n");
    print("----------\n>" . $text_1 . "<\n");
    
  2. or download this
    String: a\nb\nc\n
    ----------
    ...
    >a
    b
    c<
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (7)
As of 2024-04-19 10:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found