Help for this page

Select Code to Download


  1. or download this
    while (<F1>)
       {
          /(\w*) (\d*)/ ;
          $hash1{$1} = $2 ;
       }
    
  2. or download this
    while (<F1>) {
      if (/(\w*) (\d*)/) {
    ...
        warn "Invalid input line $.: $_\n";
      }
    }