Get the last 3 characters of a string in C#
In this tutorial, we are going to learn about how to get the last 3 characters of a string in C#.
Getting the last 3 characters
To access the last 3 characters of a string, we can use the built-in Substring() method in C#.
Here is an example, that gets the last 3 characters ris from the following string:
using System;
class GetCharacter {
static void Main() {
string place = "paris";
string lastThree = place.Substring(place.Length-3);
Console.WriteLine(lastThree);
}
}Output:
"ris"In the above example, we have passed s.Length-3 as an argument to the Substring() method. so it begins the extraction at index position s.Length-3 and extracts till the end of a string.


