Help for this page

Select Code to Download


  1. or download this
    $ csv-check -v1 test.ssv --allow-loose-quotes -L
      allow_loose_escapes   : 0
    ...
      types                 : (undef)
      undef_str             : (undef)
      verbatim              : 0
    
  2. or download this
    $ csv-check -v1 test.ssv --allow-loose-quotes -X
      allow_loose_quotes    : 1
    ...
      binary                : 1
      formula               : diag
      keep_meta_info        : 1
    
  3. or download this
    use Text::CSV_XS; # Text::CSV_XS is much faster that Text::CSV
    
    ...
        allow_loose_quotes => 1, # Should work. If not, maybe a bug in Tex
    +t::CSV
        auto_diag          => 2, # Added
        });