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
テキスト "Hello, World!" 内の "W" または "H" の最初の位置を調べます。
Text.PositionOfAny("Hello, World!", {"H", "W"})
Result:
0
Example #2
テキスト "Hello, World!" 内の "W" または "H" のすべての位置を調べます。
Text.PositionOfAny("Hello, World!", {"H", "W"}, Occurrence.All)
Result:
{0, 7}
Category
Text.Membership