Text.StartsWith
Text.StartsWith(string as nullable text, substring as text, optional comparer as nullable function) as nullable logical
如果文本值 text
以文本值 substring
开头,则返回 true。
text
: 要搜索的text
值substring
: 一个text
值,该值是要在substring
中进行搜索的子字符串comparer
: [可选] 用于控制比较的Comparer
。例如,Comparer.OrdinalIgnoreCase
可用于执行不区分大小写的搜索
comparer
是用于控制比较的 Comparer
。比较器可用于提供不区分大小写的比较或识别区域性和区域设置的比较。
公式语言中提供了以下内置比较器:
Comparer.Ordinal
: 用于执行完全序号比较Comparer.OrdinalIgnoreCase
: 用于执行不区分大小写的完全序号比较-
Comparer.FromCulture
: 用于执行识别区域性的比较
示例:
检查文本 "Hello, World" 是否以文本 "hello" 开头。
使用情况:
Text.StartsWith("Hello, World", "hello")
输出:
false
示例:
检查文本 "Hello, World" 是否以文本 "Hello" 开头。
使用情况:
Text.StartsWith("Hello, World", "Hello")
输出:
true