Edit

Share via


ValueString.LastIndexOfAny(ReadOnlySpan<Char>) Method

Definition

Reports the zero-based index of the last occurrence in this string of any character in the specified list.

public int LastIndexOfAny (ReadOnlySpan<char> anyOf);
member this.LastIndexOfAny : ReadOnlySpan<char> -> int
Public Function LastIndexOfAny (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 last 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