Help for this page

Select Code to Download


  1. or download this
    split /(?<=")\s*,\s*(?=")/, $string
    
  2. or download this
    0  '"title"'
    1  '"Some Name, "some wierd title""'
    2  '"555-555-5555"'
    
  3. or download this
    my @fields = map { s/^"(.*)"\z/$1/; $_ }
                     split /(?<=")\s*,\s*(?=")/, $string;