Parses a string to a JSON object
summary (oneliner)
Basically JSON.parse()
, parses a string to an object. Valid objects are enclosed by {}
and use double quotation marks for the keys, e.g.:
{ "foo": "bar", "baz": 123 }
doc
issues
youtube id
caniuse query
collections
Inputs
JSON String (String)
Json string in
Outputs
Result (Object)
Object out
Valid (Number)
Is true if the key is found
ParseObject Example
Parses a string {"foo": "bar"}
as an object and uses Ops.Json.ObjectGetValue to extract the key foo
(which is "bar"
)
Changelog
created op
2019-09-06 - pandur
2019-09-06 - pandur