Text.PositionOfAny
Text.PositionOfAny(text as text, characters as list, optional occurrence as nullable number) as any
Returns the first position of any character in the list characters
that is found in text
. An optional parameter occurrence
may be used to specify which occurrence position to return.
Find the first position of "W" or "H" in text "Hello, World!".
Usage
Text.PositionOfAny("Hello, World!", {"H", "W"})
Output
0
Find all the positions of "W" or "H" in text "Hello, World!".
Usage
Text.PositionOfAny("Hello, World!", {"H", "W"}, Occurrence.All)
Output
{0, 7}