Help for this page

Select Code to Download


  1. or download this
        if (c < csv->first_safe_char || (c >= 0x7f && c <= 0xa0) ||
           (csv->quote_char  && c == csv->quote_char) ||
    ...
            /* Binary character */
            break;
            }
    
  2. or download this
        if (c < csv->first_safe_char || (csv->quote_binary && c >= 0x7f &&
    + c <= 0xa0) ||
           (csv->quote_char  && c == csv->quote_char) ||
    ...
            /* Binary character */
            break;
            }
    
  3. or download this
    Text-CSV_XS $ cat test.pl
    use strict;
    ...
    ,," ",1,"a b ","€"
    ,," ",1,"a b ",€
    Text-CSV_XS $