in reply to
String Splitting
You can use the aptly named
split
.
my ($var1, $var2) = split /\t/, "string with\ttabs";
[download]
Comment on
Re: String Splitting
Select
or
Download
Code
In Section
Seekers of Perl Wisdom