Help for this page

Select Code to Download


  1. or download this
    "title", "Some Name, "some wierd title"", "555-555-5555"
    
  2. or download this
    'title'|'Some Name, "some wierd title"'|'555-555-5555'
    
  3. or download this
    $line =~ s[^"|"$][']g;
    $line =~ s[",\s"]['|']g;
    
  4. or download this
    my $csv = Text::CSV_XS->new({
         'quote_char'  => "'",
         'sep_char'    => '|',
    });