Help for this page

Select Code to Download


  1. or download this
    $number = int $number;
    
  2. or download this
    $string =~ tr/.//d;
    # or
    $string =~ s/\.//g;
    
  3. or download this
    $string = substr( $string, 0, index($string, '.') );
    # or
    ($string) = $string =~ /^([^.]*)/;