Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 1

// Full namestring name = "John Doe";

// Location of the letter Dint charPos = name.IndexOf("D");

// Get last namestring lastName = name.Substring(charPos);

// Print the result

Console.WriteLine(lastName);

You might also like