Help for this page

Select Code to Download


  1. or download this
    my $int = '123';
    $int += 0; # convert to int not string any more
    
  2. or download this
    $int = int($int); # converted
    
  3. or download this
    $int = sprintf("%d", $int); # converted