Help for this page

Select Code to Download


  1. or download this
    my %uid =(
       1 => {
          'firstname' => 'Alice',
    ...
          'lastname'  => 'Bar',
       },
    );
    
  2. or download this
    foreach my $key( keys %uid ){
       if( $uid{$key}{'firstname'} eq 'Alice' ){
          print "lastname is $uid{$key}{'lastname'}\n";
       }
    }