gpt4 book ai didi

regex - 如何编写使用正则表达式过滤 where 子句的 Kusto 查询

转载 作者:行者123 更新时间:2023-12-03 20:13:55 24 4
gpt4 key购买 nike

在 Azure Log Analytics 中,我尝试使用 Kusto 查询具有使用正则表达式的 where 条件的请求。我正在尝试的查询是

requests
| where customDimensions.["API Name"] matches regex "\w*-v\d*"

但这会返回语法错误。文档中给出的示例 here是有限的,但意味着这种语法应该有效。上面的一个更简单的版本确实有效
requests
| where customDimensions.["API Name"] matches regex ".*-v.*"
where <predicate> matches regex 的正确语法是什么?在库斯托?

最佳答案

如果正则表达式包含反斜杠,那么它必须作为逐字字符串传递,如 here 所述。 .以下语法有效

requests
| where customDimensions.["API Name"] matches regex @'\w*-v\d*'

关于regex - 如何编写使用正则表达式过滤 where 子句的 Kusto 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58546212/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com