ValueString.IndexOfAny(ReadOnlySpan<Char>) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Reports the zero-based index of the first occurrence in this string of any character in the specified list.
public int IndexOfAny (ReadOnlySpan<char> anyOf);
member this.IndexOfAny : ReadOnlySpan<char> -> int
Public Function IndexOfAny (anyOf As ReadOnlySpan(Of Char)) As Integer
Parameters
- anyOf
- ReadOnlySpan<Char>
A list containing one or more characters to seek.
Returns
The zero-based index of the first occurrence in this string where any character in anyOf
was found; otherwise, -1 if no character in anyOf
was found in this string.