in reply to Re^4: to csv file
in thread to csv file

I would change the other routine, but anyway, a simple solution would be double quote all the fields regardless.
#!perl use strict; open OUT,">test.csv" or die "$!"; while (<DATA>){ chomp; s/;;/","/g; print OUT '"'.$_.'"'."\n"; } close OUT; __DATA__ abd;;sasa;;trre,dsa;;sdas;;dsss abd;;sasa;;trre,dsa;;sdas;;dsss
poj