Help for this page
$line =~ s/,/ /g;
my @tmp_array = split(',',$line); $line = join(' ',@tmp_array);
$line = join(' ', split(',',$line));