Answers for "check for a character in specific index in string i c#"

C#
2

c# find index of character in string

string str = "Now is the time.";
int index = str.IndexOf("h");
Posted by: Guest on March-05-2021

Code answers related to "check for a character in specific index in string i c#"

C# Answers by Framework

Browse Popular Code Answers by Language