替换 Kusto 中的 GUID

Replacing GUID in Kusto

如何替换 Kusto 查询中没有值的所有 GUID。

例如

我的数据看起来像

/page/1d58e797-a905-403f-ebd9-27ccf3f1d2cd/user/4d58e797-a905-403f-ebd9-27ccf3f1d2c3

我想要

/页面//用户/

您可以使用 replace function. Also, you can test regular expression here.

let input = '/page/1d58e797-a905-403f-ebd9-27ccf3f1d2cd/user/4d58e797-a905-403f-ebd9-27ccf3f1d2c3';
let rx = '[({]?[a-fA-F0-9]{8}[-]?([a-fA-F0-9]{4}[-]?){3}[a-fA-F0-9]{12}[})]?';
print replace(rx, '', input);

尝试使用下面的正则表达式它将删除 url

中的 guid (8-4-4-4-12)
 let regex =/(\/[\w]{8}-[\w]{4}-[\w]{4}-[\w]{4}-[\w]{12})(\b|\/)/g