Table of Contents

Method IndexOfOccurence

Namespace
Alternet.Common
Assembly
Alternet.Common.v9.dll

IndexOfOccurence(string, char, int, int)

Reports the zero-based index of the occurenceCount occurrence of the specified character in this instance. The search starts at a specified character position.

public static int IndexOfOccurence(this string s, char toLookFor, int startIndex, int occurenceCount)

Parameters

s string

Source string to process.

toLookFor char

A Unicode character to seek.

startIndex int

The search starting position.

occurenceCount int

The number of occurence to examine.

Returns

int

The zero-based index position of toLookFor from the startIndex of the source string if that string is found, or -1 if it is not.