pcredskin7
Programmer
I am having trouble splitting a string that is delimited by the '^' character. Could somebody please point me in the right direction?
Below is one of the many methods I have tried thus far:
my $temp = "mary^had^a^little^lamb.";
my @vals = split('^', $temp);
Thanks.
Below is one of the many methods I have tried thus far:
my $temp = "mary^had^a^little^lamb.";
my @vals = split('^', $temp);
Thanks.