Help for this page

Select Code to Download


  1. or download this
    foreach my $string ( @word ) {
          if ( $uword{ $string }[ 0 ] == 1 ) {
    ...
    {
       push ( @{$uword{$string}}, $line );
    }
    
  2. or download this
    @{ $uword{ $seen{ $key }[ 1 ] }
    # there is no closing curly for the @
    # its rather strange looking but
    # { $seen{ $key }[ 1 ] } is the key for the hash
    
  3. or download this
    push @{$hash{$key}}, $value;