Text.PositionOfAny
返回文本值中任何所列字符的第一个位置(如果找不到,则返回 -1)。
Syntax
Text.PositionOfAny(
text as text,
characters as list,
optional occurrence as Occurrence.Type
) as any
Remarks
返回在 text 中找到的列表 characters中任何字符的第一个位置。 可选参数 occurrence 可用于指定要返回的出现位置。
Examples
Example #1
查找 "W" 或 "H" 在文本 "Hello, World!" 中的第一个位置。
Text.PositionOfAny("Hello, World!", {"H", "W"})
Result:
0
Example #2
查找 "W" 或 "H" 在文本 "Hello, World!" 中的位置。
Text.PositionOfAny("Hello, World!", {"H", "W"}, Occurrence.All)
Result:
{0, 7}
Category
Text.Membership