使用英语阅读

通过


Text.Contains

语法

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

关于

检测 text 是否包含值 substring 。 如果找到文本,则返回 true。 此函数不支持通配符或正则表达式。

可选参数 comparer 可用于指定不区分大小写或区分区域性和区域设置的比较。 以下内置比较器支持公式语言:

如果第一个参数为 NULL,则此函数返回 NULL。

所有字符都按字面值处理。 例如,"DR"、" DR"、"DR " 和 " DR "不会被视为彼此相等。

示例 1

查找文本“Hello World”是否包含“Hello”。

使用情况

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

输出

true

示例 2

查找文本“Hello World”是否包含“hello”。

使用情况

Text.Contains("Hello World", "hello")

输出

false

示例 3

使用不区分大小写的比较器查找文本“Hello World”是否包含“Hello”。

使用情况

Text.Contains("Hello World", "hello", Comparer.OrdinalIgnoreCase)

输出

true

示例 4

在表中查找帐户代码中包含“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}
})