Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The GetKeys service returns all the keys stored in the hash table as a delimited list. The list will be delimited by the character you pass through the Delim parameter. If you omit the Delim parameter, then the list will be delimited by field marks.

NOTE: If the SRP Hash Table is using case-insensitive keys, then the keys returned here will all be upper case.

Examples

Code Block
// Get the keys delimited by field marks
KeyList = SRP_HashTable("GetKeys", Handle)

// Get the keys delimited by commas
KeyList = SRP_HashTable("GetKeys", Handle, ",")