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

Re^2: Data extraction from text file

by Eliya (Vicar)
on Aug 09, 2011 at 11:49 UTC ( [id://919458]=note: print w/replies, xml ) Need Help??


in reply to Re: Data extraction from text file
in thread Data extraction from text file

Alternatively, you could set the input record separator ($/) to "-------", which simplifies things a bit:

$/ = "-------\n"; my @records; while (<>) { my @entries = map { /([^:]+):\s*(.*)/ } split /\n/; push @records, { @entries } if @entries; }

Log In?
Username:
Password:

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

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

    No recent polls found