parsePropertiesString
This procedure converts a comma-separated list of key-value pairs divided by an equals sign ('=
') into a key-value table.
Parameters
Parameter | Description |
---|---|
properties | A comma-separated string of properties in a key-value format; mandatory |
Attributes
Attribute | Type | Description |
---|---|---|
| string | Property name |
| string | Property value |
Example
SQL
CALL UTILS.parsePropertiesString(
properties => 'item1=10,item2=20'
);;
This call returns the following:
UTILS.parsePropertiesString
procedure available since v4.5