parse_sup
Function
parse_sup — parse SUP (formerly known as ZSON) or JSON text into a value
Synopsis
parse_sup(s: string) -> any
Description
The parse_sup function parses the s
argument that must be in the form
of SUP or JSON into a value of any type. This is analogous to JavaScript’s
JSON.parse()
function.
Examples
Parse SUP text
foo := parse_sup(foo)
{foo:"{a:\"1\",b:2}"}
Loading...
echo '{foo:"{a:\"1\",b:2}"}' \
| super -z -c 'foo := parse_sup(foo)' -
Parse JSON text
foo := parse_sup(foo)
{"foo": "{\"a\": \"1\", \"b\": 2}"}
Loading...
echo '{"foo": "{\"a\": \"1\", \"b\": 2}"}' \
| super -z -c 'foo := parse_sup(foo)' -