OCLOperators JsonGetProp
(Created page with "The JsonGetProp operator is for JSON strings and returns the value of a JSON property as a string. Null is returned if the property is not available. The JsonGetProp operator can be chained to get a nested JSON value. ==== Example: 1 ==== '{name: "Sam"}'.JsonGetProp('name') Returns 'Samuel' ==== Example: 2 ==== <nowiki>'{person: {name: "Same", age: 25}}'.JsonGetProp('person').JsonGetProp('age')</nowiki> Returns 25")
 
No edit summary
Line 12: Line 12:
Returns
Returns
  25
  25
==== Other Pages ====
* [[Documentation:OCLOperators JSonToObjects|OCL Operator JsonToObjects]]

Revision as of 02:35, 16 August 2024

The JsonGetProp operator is for JSON strings and returns the value of a JSON property as a string. Null is returned if the property is not available.

The JsonGetProp operator can be chained to get a nested JSON value.

Example: 1

'{name: "Sam"}'.JsonGetProp('name')

Returns

'Samuel'

Example: 2

'{person: {name: "Same", age: 25}}'.JsonGetProp('person').JsonGetProp('age')

Returns

25

Other Pages

This page was edited 32 days ago on 08/19/2024. What links here