Array slice with step but end not aligned
Setup
Selector: $[0:4:2]
["first", "second", "third", "forth", "fifth"]
Results
Consensus
[
"first",
"third"
]
Other responses
Clojure (json-path)
¹
"first"
Elixir (jaxon)
[]
Java (com.github.jsurfer)
Not supported
org.antlr.v4.runtime.misc.ParseCancellationException
Java (com.jayway.jsonpath)
¹
³
[
"first",
"second",
"third",
"forth"
]
Kotlin (com.nfeld.jsonpathkt)
¹
[
"first",
"second",
"third",
"forth"
]
Objective-C (SMJJSONPath)
¹
³
[
"first",
"second",
"third",
"forth"
]
Python (jsonpath-ng)
Not supported
JsonPathParserError('Parse error at 1:5 near token : (:)')
Python (jsonpath-rw)
Not supported
Exception('Parse error at 1:5 near token : (:)')
Raku (JSON-Path)
Not supported
JSON path parse error at position 1
Rust (jsonpath)
Not supported
parsing error
Errors
C (json-glib)
timeout: sending signal TERM to command ‘build/main’
only support one range(from, to): [0 4 2]
Footnotes
- ¹ This implementation returns a single value where only one match is possible (instead of an array of a single value).
- ² This implementation returns a specific not found value if no match exists.
- ³ This implementation returns a specific not found value if a query that would regularly return a single match results in no match.