I am trying to search after a html tag(creating a JsonPath), but I am missing smth:
$..BodyVariables[*].Value[?(@.VALUE=/^<array name=\"AOI\">.*/)].VALUE
I want all the VALUEs which begin with "array name=\"AOI\"" and can have anything after. I tried to write this regex in different forms, but no success. I am testing using: http://jsonpath.herokuapp.com/ (e.g. : @..book[?(@.author=/^abc.*/)].author)