I see nothing in [dchester's](https://github.com/dchester/jsonpath) implementation that allows regex, but I want to check for sure. For querying an automobile make/model structure... this works: $[0].models[?(@.name == "Bronco")] but this does not: $[0].models[?(@.name =~ /.*/)]
I see nothing in dchester's implementation that allows regex, but I want to check for sure. For querying an automobile make/model structure...
this works:
$[0].models[?(@.name == "Bronco")]
but this does not:
$[0].models[?(@.name =~ /.*/)]