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