13
1
using System;
2
public class Program {
3
public static void Main() {
4
5
string str = "Learn CSharp";
6
7
int charPosition = str.IndexOf("C");
8
9
string courseName = str.Substring(str.IndexOf("C")); // find the first letter to extract the word "CSharp"
10
11
Console.WriteLine(courseName);
12
}
13
}
Cached Result