Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re^3: remove first and last character of string

by AnomalousMonk (Archbishop)
on Oct 14, 2020 at 03:20 UTC ( [id://11122807]=note: print w/replies, xml ) Need Help??


in reply to Re^2: remove first and last character of string
in thread remove first and last character of string

Win8 Strawberry 5.8.9.5 (32) Tue 10/13/2020 23:18:23 C:\@Work\Perl\monks >perl -Mstrict -Mwarnings my $s = '"654321_1111"'; print "'$s' \n"; $s = substr $s, 1, -1; print "'$s' \n"; ^Z '"654321_1111"' '654321_1111'


Give a man a fish:  <%-{-{-{-<

Replies are listed 'Best First'.
Re^4: remove first and last character of string
by syphilis (Archbishop) on Oct 14, 2020 at 10:46 UTC
    $s = substr $s, 1, -1;

    Nice.
    I didn't know that would work. I would have done it as:
    $s = substr $s, 1, length($s) - 2;
    But I've read the documentation, now ;-)

    Cheers,
    Rob

Log In?
Username:
Password:

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

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

    No recent polls found