Help for this page

Select Code to Download


  1. or download this
      my @splat = unpack '(A4)*', $thing;
    
  2. or download this
      $num = int($string);
      $num = $string + 0;
    
  3. or download this
      my @splat = map $_ + 0, unpack '(A4)*', $thing;