in reply to A module to parse CSVs line by line with an ability to set delimiter

The Text::CSV documentation explains how to set the sep_char and provides example use e.g.

my $csv = Text::CSV->new ({ sep_char => ';' });