G
glvs
Hi,
How can I combine following 2 instructions into one? I want to split
tab delimited input into a list and then right trim every item in that
list.
@list = split("\t", $input);
@list =~ map{ s/\s+$// } @list;
Thanks,
Glenn
How can I combine following 2 instructions into one? I want to split
tab delimited input into a list and then right trim every item in that
list.
@list = split("\t", $input);
@list =~ map{ s/\s+$// } @list;
Thanks,
Glenn