trim_start()

适用于:✅Azure 数据资源管理器Azure MonitorMicrosoft Sentinel

删除指定正则表达式的前导匹配项。

语法

trim_start(regex, source)

详细了解语法约定

参数

客户 类型​​ 必需 说明
regex string ✔️ 要从 source 的开头剪裁的字符串或正则表达式
source string ✔️ 要从中剪裁 regex 的源字符串。

返回

修剪 source 开头的 regex 匹配项后的 source 。

示例

剪裁特定子字符串

以下示例从 string_to_trim 的开头剪裁 substring

let string_to_trim = @"https://bing.com";
let substring = "https://";
print string_to_trim = string_to_trim,trimmed_string = trim_start(substring,string_to_trim)

输出

string_to_trim trimmed_string
https://bing.com bing.com

剪裁非字母数字字符

以下示例从字符串的开头剪裁所有非单词字符。

range x from 1 to 5 step 1
| project str = strcat("-  ","Te st",x,@"// $")
| extend trimmed_str = trim_start(@"[^\w]+",str)

输出

str trimmed_str
- Te st1// $ Te st1// $
- Te st2// $ Te st2// $
- Te st3// $ Te st3// $
- Te st4// $ Te st4// $
- Te st5// $ Te st5// $

剪裁空格

以下示例从字符串的开头剪裁所有空格。

let string_to_trim = @"    Hello, world!    ";
let substring = @"\s+";
print
    string_to_trim = string_to_trim,
    trimmed_start = trim_start(substring, string_to_trim)

输出

string_to_trim trimmed_start
Hello, world! Hello, world!