Is there a JSON library that allows to retrieve values using the path?

Is there a JSON library that allows to retrieve values using the path?

e.g.:

JSONValue: = JSON.GetValue ('Object/Subobject/field');

where

{
"Number" 123,
"Object": {
"Subobject": {field: "b"}
"field", "d"
"otherfield", "f"
}
"String": "Hello World"
}

Comments

Post a Comment