Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Re^2: Hash from a file

by Anonymous Monk
on Oct 04, 2007 at 15:43 UTC ( [id://642685]=note: print w/replies, xml ) Need Help??


in reply to Re: Hash from a file
in thread Hash from a file

Kind of...what I want is it to be split like...
'Data_Type:1237834810' => ['data2 data2 data2 data2 data2']
Can't say how grateful I am for this btw!

Replies are listed 'Best First'.
Re^3: Hash from a file
by naikonta (Curate) on Oct 04, 2007 at 15:56 UTC
    Be careful. Saying ['data2 data2 data2 data2 data2'] means that the value is an array reference with a single element, 'data2 data2 data2 data2 data2', which is a string. It's not the same as ['data2', 'data2', 'data2', 'data2', 'data2'] which is an array reference consist of some elements that are all strings. If what you want is the latter, then toolic has given the answer.

    However, if what you want is the former then you can join back @description separated by, for example, spaces. This also replaces tabs with single spaces. From toolic's code:

    my ($id, @description) = split; $hash{$id} = [join ' ', @description];

    Open source softwares? Share and enjoy. Make profit from them if you can. Yet, share and enjoy!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (4)
As of 2024-04-25 14:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found