Is it possible to find a name property that matches the regular expression pattern (or at least starts with) using the JSON Path. In XPath I can use name(), but I could not find the equivalent of the JSON Path .
Basically, I need to find all property names starting with x-. Something like that $..x-*.
I will be interested to use any javascript package that will do this. I am currently using JSONPath .
source
share