in reply to Re^2: Text::CSV_XS and "binary" mode
in thread Text::CSV_XS and "binary" mode

That still doesn't tell me what you expected, what you get, and how these two differ. You might want to use Data::Dumper (set $Data::Dumper::Useqq = 1) to get an accurate description of your string.

Replies are listed 'Best First'.
Re^4: Text::CSV_XS and "binary" mode
by bittis (Sexton) on Jan 26, 2009 at 08:53 UTC
    The line itself is returned correctly. The problem is that if for example the Action field contains a comma, then the what i get in the next field is the string after the comma and not the correct assign to ID, which is then place in the STATUS field instead, leaving me with an additional field in the end. Is this clearer? :/
      So basically you want the separator to be something different than a comma? Use the sep_char option then. The Text::CSV_XS documentation is quite clear on that, I think...