Custom Command
FunctionsObject Functions

$objectValues

Return the Object values with seperator between each value

Usage

$objectValues[Seperator (optional, default:, );Nested Propery 1;Nested Property 2]

Example (Get values of nested property):

!!exec $objectSet[name;Mido]
$objectSet[age;300]
$objectValues

Mido, 300

Example:

!!exec $objectSet[user;name;Mido]
$objectSet[user;id;1234]
$objectSet[user;weapon;Sword]
$objectValues[/;user]

Mido/1234/Sword

On this page