Help for this page
my $foo = "foo,bar,moo,cow"; $foo =~ /(?:([^,]+),)+/;
my $mystr = "foo,bar,moo,cow"; my @values = $mystr =~ m/(\w+)\,?/g;