http://www.perlmonks.org?node_id=622747


in reply to Re^2: Subtracting Stringified Negative Numbers (Data::Dumber)
in thread Subtracting Stringified Negative Numbers

You are right, tye. Following your suggestion, and by doing this:
my $some_string = "0,-933"; $Data::Dumper::Useqq = 1; print Dumper ($some_string) ; my ($id1,$n1) = split(",",$some_string); #then do things with $n1 and $n2.
It gives:
$VAR1 = "0,\34-933";
So my questions are:

Regards,
Edward