# Ogólny csv parser
mój $parser = Tekst:: CSV:: Simple->new;
mój @data = $parser->read_file ($datafile);
druk @$_ foreach @data;
# Tylko chcieć pewny pole?
mój $parser = Tekst:: CSV:: Simple->new;
# precyzować the kolumna który ty chcieć od the csv
$parser->want_fields ((1), 2, 4, 8);
mój @data = $parser->read_file ($datafile);
# Mapa the pole hash?
mój $parser = Tekst:: CSV:: Simple->new;
$parser->field_map (qw/id imię nieobowiązujący town/);
mój @data = $parser->read_file ($datafile);
|