共用方式為


Text.EndsWith

語法

Text.EndsWith(text as nullable text, substring as text, optional comparer as nullable function) as nullable logical

關於

指示所指定文字 text 是否以指定的值 substring 為結尾。 該指示會區分大小寫。

comparerComparer,其用於控制比較。 比較子可以用來提供不區分大小寫或文化特性和地區設定感知的比較。

下列內建比較子可用於公式語言:

範例 1

檢查 "Hello, World" 是否以 "world" 為結尾。

使用方式

Text.EndsWith("Hello, World", "world")

輸出

false

範例 2

檢查 "Hello, World" 是否以 "World" 為結尾。

使用方式

Text.EndsWith("Hello, World", "World")

輸出

true