Skip to main content
DevTools24

JSONPath टेस्टर

JSONPath एक्सप्रेशन टेस्ट करें।

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 - तकनीकी विवरण

tools.json-path-tester.toolInfo.details

कमांड-लाइन विकल्प

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