ValueString.IndexOfAny(ReadOnlySpan<Char>) Method

Definition

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.

Applies to