in reply to Dynamically creating a hash based on a variable
To "play with the hash", adding values would be:$hash{$date} = {};
To see if the hash exists, use exists:$hash{$date}->{key} = value;
if (exists $hash{$date}) {...}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Dynamically creating a hash based on a variable
by beethamd (Initiate) on Apr 15, 2007 at 14:13 UTC |