in reply to keys in a Win32::OLE Hash

Please see Not Exactly a Hash Tutorial and Re: How can I visualize my complex data structure? for ways to print complex data structures like hashes.

HTH,

planetscape

Replies are listed 'Best First'.
Re^2: keys in a Win32::OLE Hash
by slloyd (Hermit) on Nov 10, 2005 at 18:37 UTC

      Absent your actual data, my best suggestion is probably to "print" $hash using something like:

      use Data::Dumper; ... print Dumper( $hash );

      This way, you can see what you have on your hands and get an idea of the syntax needed to work with it.

      intro to references and References quick reference are probably also required reading. :-)

      HTH,

      planetscape