Skip to main content
Version: 15

MAP_GET

Gets the value paired to a key from a map.

Description

Gets the value paired to a key within a map and stores it in a variable.

Syntax

MAP_GET [Map name] [Key] [Output variable]

Command parameters

Command parameterAssignmentValue formatInput options
Map nameRequiredStringLocal, variable
KeyRequiredStringLocal, variable
Output variableRequiredStringLocal, variable

Map name:

Name of the map.

Key:

The string acting as the key.

Output variable:

Name of the variable that will contain the output. The output is the value paired to the key.

Sample code

Command only:

MAP_GET Map1 Key1 Key1_Value

Command + map and key creation:

MAP_CREATE Map1

MAP_SET Map1 Key1 123

MAP_GET Map1 Key1 Key1_Value