Beefy Boxes and Bandwidth Generously Provided by pair Networks
Come for the quick hacks, stay for the epiphanies.
 
PerlMonks  

Re: Removing digits until you see | in a string

by inman (Curate)
on Jan 08, 2007 at 09:31 UTC ( [id://593492]=note: print w/replies, xml ) Need Help??


in reply to Removing digits until you see | in a string

A couple of suggestions. The following uses a substituation and removes the index from the rest of the data (i.e. the original data is changed).
$data_hash{$1}= $str if $str =~ s/(\d+)\|//;
This uses matches the index and remaing data without altering the original.
$data_hash{$1}= $2 if $str =~ /(\d+)\|(.*)$/;
I have used a conditional to assess the validity of the assignment beforehand. This is useful for data processing where the quality of the data is variable.

Log In?
Username:
Password:

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

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

    No recent polls found