Help for this page

Select Code to Download


  1. or download this
    $_ = '"Jones, James", "Smith, Susan", Spot';
    use Text::ParseWords;
    @names = quotewords(",", 0, $_);
    print join(" &", @names);