● string SubString(int startIndex, int Length); - startIndex : 문자열을 가져올 시작위치 - length : 가져올 문자열의 길이 - Sample using System; namespace test { class Program { static void Main(string[] args) { string str = "Sample Test"; string strValue = str.Substring(0, 6); Console.WriteLine(strValue); } } } 결과 : Sample ● int IndexOf(string strSearchText) - strSearchText : 찾고자하는 문자열 입력 - 반환(return) 값 -1 : 문자열 찾지 ..