in reply to Getting data out of hash
Not familiar with the particular module that you're using, but I'm pretty sure that you're trying to output something that's an array-ref. Putting that result in @{} will force it back into a list context, so that when it's 'stringified' it will print out each element.print @{$results{$value}{August}{fullTimeEducation}};
If the elements of this array are further refs, you'll see more "ARRAY(0xDEADBEEF)" "HASH(0xDEADBEEF)" outputs, so you'll have to think about writting some kind of formatting routine.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Getting data out of hash
by !1 (Hermit) on Nov 17, 2003 at 15:26 UTC |