C#의 String.IndexOf() 메서드는 이 인스턴스 내에서 지정된 유니코드 문자 또는 문자열이 처음 나타나는 0부터 시작하는 인덱스를 찾는 데 사용됩니다.
구문
구문은 다음과 같습니다 -
public int IndexOf (string val);
위의 val은 찾을 문자열입니다.
예시
이제 예를 살펴보겠습니다 -
using System; public class Demo { public static void Main(String[] args) { string str1 = "Jacob"; string str2 = "John"; Console.WriteLine("String 1 = "+str1); Console.WriteLine("HashCode of String 1 = "+str1.GetHashCode()); Console.WriteLine("Index of character 'o' is str1 = " + str1.IndexOf("o")); Console.WriteLine("\nString 2 = "+str2); Console.WriteLine("HashCode of String 2 = "+str2.GetHashCode()); Console.WriteLine("Index of character 'o' is str2 =" + str2.IndexOf("o")); bool res = str1.Contains(str2); if (res) Console.WriteLine("Found!"); else Console.WriteLine("Not found!"); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
String 1 = Jacob HashCode of String 1 = -790718923 Index of character 'o' is str1 = 3 String 2 = John HashCode of String 2 = -1505962600 Index of character 'o' is str2 =1 Not found!
예시
이제 다른 예를 살펴보겠습니다 -
using System; public class Demo { public static void Main(String[] args) { string str1 = "Kevin"; string str2 = "Evin"; Console.WriteLine("String 1 = "+str1); Console.WriteLine("HashCode of String 1 = "+str1.GetHashCode()); Console.WriteLine("Index of character 'k' in str1 = " + str1.IndexOf("k")); Console.WriteLine("\nString 2 = "+str2); Console.WriteLine("HashCode of String 2 = "+str2.GetHashCode()); Console.WriteLine("Index of character 'k' in str2 =" + str2.IndexOf("k")); bool res = str1.Contains(str2); if (res) Console.WriteLine("Found!"); else Console.WriteLine("Not found!"); } }
출력
이것은 다음과 같은 출력을 생성합니다 -
String 1 = Kevin HashCode of String 1 = -768104063 Index of character 'k' in str1 = -1 String 2 = Evin HashCode of String 2 = 1223510568 Index of character 'k' in str2 =-1 Not found!