Hi all! I have a hash question for you.
Is it possible to add to the value of a hash...
Explaination:
$hash{$timestring}++;
If 15:00:00 was put in the hash twice the value for that key would be 2.
Now, is it possible to instead make something like this
$hash{$timestring}+$value; so if the value 100 was associated with 15:00:00 the value would become 200 the next time 15:00:00 was put into the hash.
Any ideas on how to accomplish this.
Thanks!.
Heffa K.