Help for this page

Select Code to Download


  1. or download this
    my $string = q("one","two","three");
    my @array = map {s/^['"](.*)['"]$/$1/ ? $1 : $_} split ',', $string;
    
    print "@array";
    
  2. or download this
    one two three