Help for this page
my $int = '123'; $int += 0; # convert to int not string any more
$int = int($int); # converted
$int = sprintf("%d", $int); # converted