in reply to Re: Escaping white space with qw//
in thread Escaping white space with qw//
Though same problem with a character in the input data which is special.
Though maybe if having the values in a compact area is desired.
my $values="one , two , three , four and a half , five"; my @array=split(' , ', $values);
This would split on a series of characters unlikely to appear naturally.
|
|---|