Versions Compared

Key

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

...

Code Block
ValueList = SRP_HashTable_GetValues(Handle, Delim)

Returns

A delimited list of the values stored in the hash table

Parameters

ParameterDescription
HandleHandle to an existing SRP Hash Table (REQUIRED)
DelimDelimiter to insert between values (OPTIONAL, @FM by default)

Remarks

The SRP_HashTable_GetValues returns all the values 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.

IMPORTANT: You should always release the handle to an SRP Hash Table when you no longer need it by calling SRP_HashTable_Release.

Examples

Code Block
// Get the values delimited by field marks
ValueList = SRP_HashTable_GetValues(Handle)

// Get the values delimited by commas
ValueList = SRP_HashTable_GetValues(Handle, ",")