ENTRYNAMES

Returns a delimited list comprised of the first of each pair of values from a delimited list contained in a string.

Return Value

String

Syntax

ENTRYNAMES( listString[, delimiter[, separator]] )

where:

  • listString is a string expression that consists of zero or more elements separated by the delimiter character, each of which element consists of a name and a value separated by the separator character.
  • delimiter is a character or string which separates elements in listString from each other. This argument is optional. If this argument is not used, the comma (,) character is used, and the equals sign (=) is used as the separator. In this case, each element may contain commas if they are enclosed within a ~LIT~(…) wrapper.
  • separator is the character or string which separates the name from the value in each element. This argument is optional. If this argument is not used, the equals sign (=) is used.