Beefy Boxes and Bandwidth Generously Provided by pair Networks
P is for Practical
 
PerlMonks  

Re: Non-regex Methods of Extracting the Last Field from a Record

by blokhead (Monsignor)
on May 08, 2009 at 01:35 UTC ( [id://762735]=note: print w/replies, xml ) Need Help??


in reply to Non-regex Methods of Extracting the Last Field from a Record

You can even do it avoiding the temporary list generated by split. Instead, you can use rindex to go directly to the appropriate part of the string:
my $rec = " 2425 S 25 \" 6 47! 86 18 21! 87 23 23! - + -! - -! 96"; my $last = substr $rec, 1 + rindex($rec, " "); print $last, $/;
I'm only posting this for the sake of completeness. This only works because your record separator is whitespace. rindex won't generalize as well as split (more complicated separators, picking out records other than the last, ignoring trailing empty records).

blokhead

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others studying the Monastery: (5)
As of 2024-04-19 00:53 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found