Text.TrimEnd

语法

Text.TrimEnd(text as nullable text, optional trim as any) as nullable text

关于

返回从指定 text字符中删除所有尾随字符的结果。 默认情况下,将删除所有尾随空格字符。

  • text:要从中删除尾随字符的文本。
  • trim:重写默认剪裁的空格字符。 此参数可以是单个字符,也可以是单个字符的列表。 遇到非剪裁字符时,每个尾部剪裁操作都会停止。

示例 1

删除“ a b c d ”中的尾随空格。

使用情况

Text.TrimEnd("     a b c d    ")

输出

"     a b c d"

示例 2

从填充浮点数的文本表示形式中删除尾随零。

使用情况

Text.TrimEnd("03.487700000", "0")

输出

"03.4877"

示例 3

从固定宽度帐户名称中删除尾随填充字符。

使用情况

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}
    }),