Parse A CSV String Using Perl
Parsing a CSV file with perl is probably one of the simpler thing’s you’ll have to do in life. You could use something as simple as
my @line = split(/,/,$somedata);
Or even simpler, you could use the Perl Package Text::CSV, which I would recommend because if you are like me you parse financial data alot! So When […]

