Filter expression with division
Setup
Selector: $[?(@.key/10==5)]
[{"key": 60}, {"key": 50}, {"key": 10}, {"key": -50}, {"key/10": 5}]
Results
Other responses
Bash (JSONPath.sh)
[
5
]
C (json-glib)
Not supported
Unable to compile selector `$[?(@.key/10==5)]': Invalid array index definition “?(@.key/10==5)]”
Clojure (json-path)
¹
[
{
"key": 60
},
{
"key": 50
},
{
"key": 10
},
{
"key": -50
}
]
Cpp (jsoncons)
[
{
"key": 50
}
]
Dart (json_path)
Not supported
Instance of 'ParserException': end of input expected (at 1:2)
Elixir (ExJsonPath)
Not supported
illegal characters "/"
Elixir (jaxon)
[]
Elixir (warpath)
¹
[
{
"key/10": 5
}
]
Not supported
parsing error: $[?(@.key/10==5)] :1:10 - 1:11 unexpected "/" while scanning parentheses expected ")"
[
{
"key": 50
}
]
[
{
"key": 50
}
]
[]
[
{
"key/10": 5
}
]
Haskell (jsonpath)
Not supported
Invalid JSONPath: $[?(@.key/10==5)]
Error: 1:10:
|
1 | $[?(@.key/10==5)]
| ^
unexpected '/'
expecting "!=", "&&", "<=", "==", ">=", "||", '!', ')', '.', '<', '>', '[', or white space
JavaScript (Goessner)
²
[
{
"key": 50
}
]
JavaScript (brunerd)
[]
JavaScript (jsonpath)
[
{
"key": 50
}
]
JavaScript (jsonpath-plus)
[
{
"key": 50
}
]
JavaScript (jsonpathly)
[
{
"key": 50
}
]
Java (com.github.jsurfer)
[
{
"key/10": 5
}
]
Java (com.jayway.jsonpath)
¹
³
Not supported
SLF4J(W): No SLF4J providers were found.
SLF4J(W): Defaulting to no-operation (NOP) logger implementation
SLF4J(W): See https://www.slf4j.org/codes.html#noProviders for further details.
com.jayway.jsonpath.InvalidPathException: Could not find matching close for / when parsing regex in : $[?(@.key/10==5)]
Kotlin (com.nfeld.jsonpathkt)
¹
Not supported
Unexpected char, char=?, index=2
Objective-C (SMJJSONPath)
¹
³
Not supported
Could not find matching close for / when parsing regex in : $[?(@.key/10==5)]
PHP (galbar-jsonpath)
Not supported
Invalid JSONPath error: 'Error in JSONPath near '/10''
PHP (remorhaz-jsonpath)
Not supported
Error: 'Failed to build AST from JSONPath query: $[?(@.key/10==5)]'
PHP (softcreatr-jsonpath)
[
{
"key/10": 5
}
]
Python (jsonpath)
²
[
{
"key": 50
}
]
Python (jsonpath-ng)
Not supported
JsonPathLexerError('Error on line 1, col 2: Unexpected character: ? ')
Python (jsonpath-rw)
Not supported
JsonPathLexerError('Error on line 1, col 2: Unexpected character: ? ')
Python (jsonpath2)
Not supported
line 1:9 token recognition error at: '/'
ValueError("line 1:9 token recognition error at: '/'")
Python (python-jsonpath)
Not supported
JSONPathSyntaxError("unexpected token '/'")
Raku (JSON-Path)
Not supported
Evaluation of embedded Perl 6 code not allowed (construct with :allow-eval)
Ruby (jsonpath)
[
{
"key": 60
},
{
"key": 50
},
{
"key": 10
},
{
"key": -50
}
]
Rust (jsonpath)
Not supported
parsing error
Rust (jsonpath_lib)
[
{
"key/10": 5
}
]
Rust (jsonpath_plus)
[]
Rust (serde_json_path)
Not supported
at position 3, in long-hand segment, parser error
Scala (jsonpath)
[
{
"key/10": 5
}
]
Swift (Sextant)
Not supported
NOT_SUPPORTED
dotNET (Json.NET)
[
{
"key/10": 5
}
]
dotNET (JsonCons.JsonPath)
[
{
"key": 50
}
]
dotNET (JsonPath.Net)
[
{
"key": 50
}
]
dotNET (JsonPathLib)
[
{
"key": 50
}
]
dotNET (Manatee.Json)
[
{
"key": 50
}
]
Errors
Erlang (ejsonpath)
init terminating in do_boot ({not_implemented,bin_op,/})
Crash dump is being written to: /dev/null...done
{"init terminating in do_boot",{not_implemented,bin_op,'/'}}
wrong request: wrong request: ?(@.key/10==5)
PHP (Goessner)
²
ArgumentCountError
Perl (JSON-Path)
non-safe evaluation, died at main.pl line 11.
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.