Syntax
list hashtable_lookup ( int hid, string key)
Description
hashtable_lookup searches the specified hash table for the key.
If it finds the key, it returns the associated list, otherwise it returns an empty list.
Example
hid=hashtable_create(); hashtable_add(hid, "unxadm", {"johnd", "davel", "jamesp"}); hashtable_add(hid, "winadm", {"marym", "stevec", "janel"}); print("Windows Admin Group:" + hashtable_lookup(hid, "winadm"));