http://qs321.pair.com?node_id=734456


in reply to Question about parsing columns when using Text::CSV

Use sprintf to truncate the numbers.
my @columns = map { sprintf("%.3f", $_) } $csv->fields();
should work. untested
Boris