Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: Converting a Flat-File to a Hash

by mickeyn (Priest)
on Aug 14, 2006 at 06:18 UTC ( [id://567159]=note: print w/replies, xml ) Need Help??


in reply to Converting a Flat-File to a Hash

no Tie suggestions ? :-)

ok, here's one:

#!/usr/bin/perl use strict; use warnings; use Tie::File; tie my @array, 'Tie::File', "/the/file/in/question" or die "can't tie +file"; my %data = map { split /:/; $_[0] => $_[1] } @array;
Enjoy,
Mickey

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others cooling their heels in the Monastery: (3)
As of 2024-03-19 06:43 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found