Help for this page

Select Code to Download


  1. or download this
    my $string = "(foo),(bar),(baz)";
    my @parts  = split m{ [)] [,] [(] }x, $string;
    print "GOT: $_\n" for @parts;