Text.TrimStart
語法
Text.TrimStart(text as nullable text, optional trim as any) as nullable text
關於
傳回從指定的 text
移除所有前置字元的結果。 根據預設,會移除所有前置空格符。
text
:要從中移除前置字元的文字。trim
覆寫預設修剪的空格符。 此參數可以是單一字元或單一字元清單。 遇到非修剪字元時,每個前置修剪作業都會停止。
範例 1
從 " a b c d " 中移除前置空白字元。
使用方式**
Text.TrimStart(" a b c d ")
輸出
"a b c d "
範例 2
從數位的文字表示中移除前置零。
使用方式
Text.TrimStart("0000056.420", "0")
輸出
"56.420"
範例 3
從固定寬度帳戶名稱中移除前置填補字元。
使用方式
let
Source = #table(type table [Name = text, Account Name= text, Interest = number],
{
{"Bob", "@****847263-US", 2.8410},
{"Leslie", "@******4648-FR", 3.8392},
{"Ringo", "@*****24679-DE", 12.6600}
}),
#"Trimmed Account" = Table.TransformColumns(Source, {{"Account Name", each Text.TrimStart(_, {"*", "@"})}})
in
#"Trimmed Account"
輸出
#table(type table [Name = text, Account Name = text, Interest = number],
{
{"Bob", "847263-US", 2.841},
{"Leslie", "4648-FR", 3.8392},
{"Ringo", "2046790-DE", 12.66}
}),