We are using a tool which uses jayway library for evaluating JSONpath expression. Javascript does NOT seem to work with it. How can I use regular expression
The Jayway implementation uses the Ruby regex operator:
$.store.book[?(@.title =~ /^.*Sword.*$/)]
To ignore case:
$.store.book[?(@.title =~ /^.*sword.*$/i)]