JMESPath 是 Azure 使用的 JSON 查询语言。
使用http://jmespath.org/给出的自己的示例
{
"locations": [
{"name": "Seattle", "state": "WA"},
{"name": "New York", "state": "NY"},
{"name": "Bellevue", "state": "WA"},
{"name": "Olympia", "state": "WA"}
]
}
Run Code Online (Sandbox Code Playgroud)
如何列出名称中包含字母"l"或字符串的所有位置"le"?谢谢。