trim()
適用於:✅Microsoft網狀架構✅Azure 數據✅總管 Azure 監視器✅Microsoft Sentinel
拿掉指定正則表示式的所有前置和尾端相符專案。
語法
trim(
regex,
來源)
深入瞭解 語法慣例。
參數
姓名 | 類型 | 必要 | 描述 |
---|---|---|---|
regex | string |
✔️ | 要從來源修剪的字串或正則表示式。 |
source | string |
✔️ | 要從中修剪 regex 的來源字串。 |
傳回
在修剪在來源開頭和/或來源結尾找到之 regex 相符項目之後的來源。
範例
修剪特定子字串
下列範例會從string_to_trim的開頭和結尾修剪子字元串。
let string_to_trim = @"--https://bing.com--";
let substring = "--";
print string_to_trim = string_to_trim, trimmed_string = trim(substring,string_to_trim)
輸出
string_to_trim | trimmed_string |
---|---|
--https://bing.com-- |
https://bing.com |
修剪非英數位元
下列範例會修剪字串開頭和結尾的所有非文字字元。
range x from 1 to 5 step 1
| project str = strcat("- ","Te st",x,@"// $")
| extend trimmed_str = trim(@"[^\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_string = trim(substring, string_to_trim)
輸出
string_to_trim | trimmed_string |
---|---|
Hello, world! | Hello, world! |