跳到主要内容

Table.FindText

返回表中包含给定文本的所有行。

Syntax

Table.FindText(
table as table,
text as text
) as table

Remarks

返回表 table 中包含文本 text 的行。如果找不到文本,则返回空表。

Examples

Example #1

查找表中包含 "Bob" 的行。

Table.FindText(
Table.FromRecords({
[CustomerID = 1, Name = "Bob", Phone = "123-4567"],
[CustomerID = 2, Name = "Jim", Phone = "987-6543"],
[CustomerID = 3, Name = "Paul", Phone = "543-7890"],
[CustomerID = 4, Name = "Ringo", Phone = "232-1550"]
}),
"Bob"
)

Result:

Table.FromRecords({[CustomerID = 1, Name = "Bob", Phone = "123-4567"]})

Category

Table.Row operations