Home » C# String LastIndexOf() method

C# String LastIndexOf() method

by Online Tutorials Library

C# String LastIndexOf()

The C# LastIndexOf() method is used to find index position of the last occurrence of a specified character within String.

Signature

Parameter

ch: it is a character type parameter which is used to find last occurrence of given character within string.

Return

It returns integer value.


C# String LastIndexOf() Method Example

Output:

3 

C# String IndexOf() vs LastIndexOf() Example

The IndexOf() method returns the index number of the first matched character whereas the LastIndexOf() method returns index number of the last matched character.

Output:

2 3 

You may also like