閱讀英文

共用方式為


Text.Trim

語法

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

關於

傳回從指定的 text移除所有前置和尾端字元的結果。 根據預設,會移除所有開頭和尾端空格符。

  • text:要移除開頭和尾端字元的文字。
  • trim:覆寫預設修剪的空格符。 此參數可以是單一字元或單一字元清單。 遇到非修剪字元時,每個前置和尾端修剪作業都會停止。

範例 1

從 " a b c d " 中移除開頭和尾端空白字元。

使用方式

Text.Trim("     a b c d    ")

輸出

"a b c d"

範例 2

從數位的文字表示中移除前置和尾端零。

使用方式

Text.Trim("0000056.4200", "0")

輸出

"56.42"

範例 3

從 HTML 標記中移除前置和尾端括弧。

使用方式

Text.Trim("<div/>", {"<", ">", "/"})

輸出

"div"

範例 4

拿掉擱置銷售狀態周圍所使用的特殊字元。

使用方式

let
    Source = #table(type table [Home Sale = text, Sales Date = date, Sales Status = text],
    {
        {"1620 Ferris Way", #date(2024, 8, 22), "##@@Pending@@##"},
        {"757 1st Ave. S.", #date(2024, 3, 15), "Sold"},
        {"22303 Fillmore", #date(2024, 10, 2), "##@@Pending@@##"}
    }),
    #"Trimmed Status" = Table.TransformColumns(Source, {"Sales Status", each Text.Trim(_, {"#", "@"})})
in
    #"Trimmed Status"

輸出

#table(type table [Home Sale = text, Sales Date = date, Sales Status = text],
    {
        {"1620 Ferris Way", #date(2024, 8, 22), "Pending"},
        {"757 1st Ave. S.", #date(2024, 3, 15), "Sold"},
        {"22303 Fillmore", #date(2024, 10, 2), "Pending"}
    })