in reply to It's all getting messy - remove whitespace
Whenever you don't know what's in your data (you think it contains whitespaces) print it to make sure.
use Data::Dumper; local $Data::Dumper::Useqq = 1; # make "invisible" characters visible print Dumper \@spliceout;
Arrays and slices are interpolated into double-quoted strings by joining the elements with the delimiter specified in the $" variable
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: It's all getting messy - remove whitespace
by lecb (Acolyte) on Jun 15, 2014 at 11:21 UTC |