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