Is it possible to make a 2 dimensional hash table? I'm trying to make a program that hashes words by their alphabet letter, then I want to have it hash each of the words of each alphabet letter by a number like this:
%WordsStartingWithA = $Alphabet{'a'};
$FirstWord = $WordsStartingWithA{'1'};
will this work? or do I have to just make 26 hash tables?
Steve Kiehl
webmaster@nanovox.com
%WordsStartingWithA = $Alphabet{'a'};
$FirstWord = $WordsStartingWithA{'1'};
will this work? or do I have to just make 26 hash tables?
Steve Kiehl
webmaster@nanovox.com