Help for this page

Select Code to Download


  1. or download this
      my $number = 10.8766756;
      my $string = $number . ""; # force $number into a string
      $string =~ s/(\.\d)\d*/\1/; # if $string has one (or more) decimal
      # figures, replace them all by the first decimal figure
    
  2. or download this
      $string = int( $number * 100 ) / 100;