<< Click to Display Table of Contents >> Navigation: ThinBASIC Core Language > Data Structures > Hash Table > Hash_Get |
Description
Retrieve data associated to sKey in an Hash Table container
Syntax
sData = Hash_Get(pHash, sKey)
Returns
Data associated with sKey
Parameters
Name |
Type |
Optional |
Meaning |
pHash |
Number |
No |
Handle of a Hash Table returned by Hash_New |
sKey |
String |
No |
Unique key |
Remarks
Restrictions
sKey is case sensitive.
sKey cannot contains nulls
See also
Examples