Help for this page

Select Code to Download


  1. or download this
    $input = '7374,726327,"76,237",32324,"21,342,857",23';
    print("input:  $input\n");
    ...
    }
    
    print("output: $output\n");
    
  2. or download this
    use Text::CSV_XS ();
    
    ...
    
    print("output: ");
    $csv->print(\*STDOUT, @fields);