Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Getting columns from cvs file in perl

by Fletch (Bishop)
on Apr 24, 2007 at 13:37 UTC ( [id://611733]=note: print w/replies, xml ) Need Help??


in reply to Getting columns from csv file in perl

CPAN is your friend: Text::CSV_XS

  • Comment on Re: Getting columns from cvs file in perl

Replies are listed 'Best First'.
Re^2: Getting columns from cvs file in perl
by thezip (Vicar) on Apr 24, 2007 at 13:45 UTC

    You should also check the returned status when you parse a line:

    my $csv = Text::CSV_XS->new( { binary => 1 } ); my $status = $csv->parse($line); # parse a CSV string into fie +lds

    Occasionally, you'll encounter an invalid CSV line and you'll definitely want to handle it. If there are any embedded binary chars, you'll want to set the binary flag when you create the $csv object as I did above.


    Where do you want *them* to go today?

Log In?
Username:
Password:

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

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

    No recent polls found