Help for this page

Select Code to Download


  1. or download this
    %hash = (
        America       => 'country',
        France        => 'country',
        'George Bush' => 'name',
    );
    
  2. or download this
    %hash = (
        country   => [ 'USA', 'France', 'Austria', 'Israel'],
        name      => [ 'Georg Bush', 'Marie LePen', 'Jörg Haider', 'Ehud O
    +lmert'], 
        ...
    );
    
  3. or download this
    while (defined(my $line = <FH>)) {     # read one line into $line
      while(my($repl,$ary) = each %hash) { # iterate over %hash
    ...
      }
      print $line;                         # done
    }