trim_start()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
拿掉指定正則表達式的前置相符專案。
語法
trim_start(
regex,
來源)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
regex | string |
✔️ | 要從來源開頭修剪的字串或正則表達式。 |
source | string |
✔️ | 要從中修剪 regex 的來源字串。 |
傳回
在修剪來源開頭找到 regex 相符項目之後的來源。
範例
修剪特定子字串
下列範例會從string_to_trim開頭修剪子字串。
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)
輸出
字串 | 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! |