in reply to Re^3: Creating .csv file with comma
in thread Creating .csv file with comma

As I showed, remove the quote_char => '' option and remove the double quotes from inside the string '"Number in address is '.$number.'. Please, Please check your records."'.

Replies are listed 'Best First'.
Re^5: Creating .csv file with comma
by Anonymous Monk on Apr 24, 2020 at 19:07 UTC
    This line fixed my issue with the code:

    my $csv = Text::CSV->new ( { binary => 1, auto_diag=>2, escape_char => + "\\", eol => "\n", quote_char => '', } )


    Thanks for all the help!!