$valuepart

Return the value part of an associative list item.

$valuepart(AssociativeListItem)

Return Values

Value part of an associative list item.

Use

Allowed in all component types.

Description

For more information, see Lists and Sublists.

Extracting the ID and Value of an Associative List Item

The following example shows how the $valuepart function can be used to extract the value part of an associative list item:

$1 = $idpart("Key=TheData")
$2 = $valuepart("Key=TheData")
; results:
; $1 = "Key"
; $2 = "TheData"

Related Topics