jonnymp316
IS-IT--Management
Ok so what I want to do is to parse 1 line into 3 variables at 3 different points so here is what it looks like now:
my ($name, $value) = split /:/;
and here is what I want it to look like or do I guess:
my ($name, $value, $phone) = split /:/,/;
like I said its basically parsing one line at the colon
) and the other at the comma(,) anyway if anyone could help that would be awesome.
Thanks,
-Jonny
my ($name, $value) = split /:/;
and here is what I want it to look like or do I guess:
my ($name, $value, $phone) = split /:/,/;
like I said its basically parsing one line at the colon
Thanks,
-Jonny