Help for this page

Select Code to Download


  1. or download this
    foreach ( @array ) {
        if ( exists $hash{$_} ) {
    ...
            # do something else
        }
    }
    
  2. or download this
    my %hash = ( ... );
    while ( $_ = get_item() ) {
    ...
            # do something else
        }
    }