<< Click to Display Table of Contents >> Navigation: ThinBASIC Modules > Obsolete > Dictionary > Dictionary_Find |
Description
Search inside a dictionary for a key and if found returns its data.
Syntax
StringData = Dictionary_Find(pDictionary, KeyName)
Returns
String
Parameters
Name |
Type |
Optional |
Meaning |
pDictionary |
Numeric |
No |
Pointer to a dictionary. |
KeyName |
String |
No |
Name of the key |
Remarks
If KeyName does not exists an empty string will be returned.
Restrictions
See also
This functionality has been made obsolete by newer, better optimized hash table available directly in core instead.
Examples