I have a line:
$string = \'Paul,12,\"soccer,baseball,hockey\",white\';
I am try to split this into @array that has 4 values so
<
The standard module Text::ParseWords will do this as well.
my @array = parse_line(q{,}, 0, $string);