Finds a string at a position in an object defined by path
Summary (oneliner)
useful when working with nested data structures.
the path defines the way to the string. the stringwill be returned
given an object like this:
{
"data": { "names": [ "alyx","gordon","eli","g-man"] }
}
a path of data.names.1 will return gordon
:
Documentation (markdown)
Issues
Example patch id
Youtube ids (comma seperated)
Caniuse query
Inputs
Object (Object)
json object
Path (String)
the path (i.e. data.names)
Output path if missing (boolean /Number)
Outputs
Output (String)
the string
Found (boolean Number)