Text.Contains
Text.Contains(text as nullable text, substring as text, optional comparer as nullable function) as nullable logical
检测 text
是否包含值 substring
。 如果找到文本,则返回 true。 此函数不支持通配符或正则表达式。
可选参数 comparer
可用于指定不区分大小写或区分区域性和区域设置的比较。 以下内置比较器支持公式语言:
- Comparer.Ordinal:用于执行区分大小写的序号比较
- Comparer.OrdinalIgnoreCase:用于执行不区分大小写的序号比较
- Comparer.FromCulture:用于执行区分区域性的比较
如果第一个参数为 NULL,则此函数返回 NULL。
所有字符都按字面值处理。 例如,"DR"、" DR"、"DR " 和 " DR "不会被视为彼此相等。
查找文本“Hello World”是否包含“Hello”。
使用情况
Text.Contains("Hello World", "Hello")
输出
true
查找文本“Hello World”是否包含“hello”。
使用情况
Text.Contains("Hello World", "hello")
输出
false
使用不区分大小写的比较器查找文本“Hello World”是否包含“Hello”。
使用情况
Text.Contains("Hello World", "hello", Comparer.OrdinalIgnoreCase)
输出
true
在表中查找帐户代码中包含“A-”或“7”的行。
使用情况
let
Source = #table(type table [Account Code = text, Posted Date = date, Sales = number],
{
{"US-2004", #date(2023,1,20), 580},
{"CA-8843", #date(2023,7,18), 280},
{"PA-1274", #date(2022,1,12), 90},
{"PA-4323", #date(2023,4,14), 187},
{"US-1200", #date(2022,12,14), 350},
{"PTY-507", #date(2023,6,4), 110}
}),
#"Filtered rows" = Table.SelectRows(
Source,
each Text.Contains([Account Code], "A-") or
Text.Contains([Account Code], "7"))
in
#"Filtered rows"
输出
#table(type table [Account Code = text, Posted Date = date, Sales = number],
{
{"CA-8843", #date(2023,7,18), 280},
{"PA-1274", #date(2022,1,12), 90},
{"PA-4323", #date(2023,4,14), 187},
{"PTY-507", #date(2023,6,4), 110}
})