Help for this page

Select Code to Download


  1. or download this
      print $resultsArray->{tom};
    or
      print $resultsArray ->Item(tom);
    
  2. or download this
    use Win32::OLE qw(in);
    foreach my $key (in $resultsArray) {
      print $key, " => ", $resultsArray->{$key}, "\n";
    }