Skip to main content
devtools24

Tester JSONPath

Testa espressioni JSONPath.

Input493 chars
Output
Result appears here
JSONPath Syntax:
$ - Root object
.property - Child property
[n] - Array index
[-1] - Last element
[*] - All elements
[0:2] - Slice (start:end)

tools.json-path-tester.toolInfo.title - Dettagli tecnici

tools.json-path-tester.toolInfo.details

Alternativa da riga di comando

// JSONPath examples\n$.store.books[0].title\n$.store.books[*].author\n$..price\n$.store.books[-1]