Help for this page

Select Code to Download


  1. or download this
      # Assuming your outside hash is named %h,
      print $h{main_data}[1]{AMOUNT} . "\n";
    
  2. or download this
    for (map {@$_} values %h){
      print "Account " . $_->{ACCOUNT} . " AMOUNT: " if exists $_->{ACCOUN
    +T};
    ...
    # --- Output ---
    # Account 6510334 AMOUNT: 200.00
    # Account 6510334 AMOUNT: 0.00