in reply to
newbie split question
@new_array = split(/,",/, $line_you_want_to_split); $line_you_want_to_split would of course be a scalar that contains the,,,line you want to split up ;) @new_array will be the,,, new array that's created.
Comment on
RE: newbie split question
In Section
Seekers of Perl Wisdom