Text.EndsWith
指出文字是否以指定的值為結尾。
Syntax
Text.EndsWith(
text as text,
substring as text,
optional comparer as function
) as logical
Remarks
指出指定的文字 text 是否以指定的值 substring 做為結尾。該指示區分大小寫。
comparer 是 Comparer,用來控制比較。比較子可用來提供不區分大小寫或文化特性與地區設定感知的比較。
公式語言中提供下列內建比較子:
Comparer.Ordinal: 用來執行精確序數比較Comparer.OrdinalIgnoreCase: 用來執行不區分大小寫的精確序數比較Comparer.FromCulture: 用來執行文化特性感知的比較
Examples
Example #1
檢查 "Hello, World" 是否以 "world" 為結尾。
Text.EndsWith("Hello, World", "world")
Result:
false
Example #2
檢查 "Hello, World" 是否以 "World" 為結尾。
Text.EndsWith("Hello, World", "World")
Result:
true
Category
Text.Membership