Find a JSON property name that starts with something using JSON Path

前端 未结 2 804
感动是毒
感动是毒 2020-12-18 22:35

Is it possible to find a property name that matches a regex pattern (or at least starts with) using JSON Path. In XPath I can use name() but I

2条回答
  •  -上瘾入骨i
    2020-12-18 22:40

    Useful to someone else
    You can use regular expression using =~ left matches regular expression. For more in formation visit https://github.com/jayway/JsonPath

    [?(@.name =~ /foo.*?/i)]
    

提交回复
热议问题