You really don't need to care if perl stores your numbers as strings or numbers. Perl will convert as necessary and it all just works!
Consider:
my $str = '123'; $str += 10; print "str = /$str/\n"; my $num = 456; $num =~ s/6/8/; print "num = /$num/\n";
Output:
str = /133/ num = /458/
In reply to Re: When does '123' become the number 123.0?
by FunkyMonk
in thread When does '123' become the number 123.0?
by wa1ter
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |