程序人生

Perl中的字符串和数值

$string = quot;11quot;;$number = 22;$result = $string + $number; # $result = 33perl 中字符串和数值可以互相转换,但是只...