Kusto 似乎不支持正则表达式环视,因为当我尝试运行以下命令时出现以下错误。我使用了错误的语法吗?如果确实不支持此功能,我在哪里可以提供反馈以投票支持此功能?
积极的前瞻测试:
print(extract("t(?=t)", 0, "http"))
预期输出:
tt
实际错误:
Relop semantic error: 'extract()' has the following semantic error: SEM0420: Regex pattern is ill-formed: t(?=t).
负前瞻测试:
print(extract("t(?!t)", 0, "http"))
预期输出:
tp
实际错误:
Relop semantic error: 'extract()' has the following semantic error: SEM0420: Regex pattern is ill-formed: t(?!t).