in reply to Re: Re: Re: Re: Re: Re: Hash Problems
in thread Hash Problems

Yep, that's right. What's happening is that Dumper doesn't know you're passing it a hash; it just gets a flattened list of values, and prints them one after another.

I probably should have suggested this instead:

use Data::Dumper; print Dumper \%home_dcr_files; # ref to hash, for nicer formatting

Replies are listed 'Best First'.
Re: Re: Re: Re: Re: Re: Re: Re: Hash Problems
by wstarrs (Acolyte) on May 17, 2001 at 00:52 UTC
    Thanks a ton fellas...