반응형
해당 문자열이 있으면 value의 인덱스 위치(0부터 시작)이고, 그렇지 않으면 -1입니다.
value가 String.Empty인 경우 반환 값은 0입니다.
발생할 수 있는 예외는
Value가 Null 일때, ArgumentNullException 가 발생합니다.
예제 코드는 MSDN을 참조하였다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | using System; public class Example { public static void Main() { string s1 = "ani\u00ADmal"; string s2 = "animal"; // Find the index of the soft hyphen. Console.WriteLine(s1.IndexOf("\u00AD")); Console.WriteLine(s2.IndexOf("\u00AD")); // Find the index of the soft hyphen followed by "n". Console.WriteLine(s1.IndexOf("\u00ADn")); Console.WriteLine(s2.IndexOf("\u00ADn")); // Find the index of the soft hyphen followed by "m". Console.WriteLine(s1.IndexOf("\u00ADm")); Console.WriteLine(s2.IndexOf("\u00ADm")); } } // The example displays the following output: // 0 // 0 // 1 // 1 // 4 // 3 |
반응형
'Language > C#' 카테고리의 다른 글
[C#] HashTable (해시 테이블) (0) | 2013.12.11 |
---|---|
[C#] 정규 표현식 기호표 (0) | 2013.12.11 |
[C#] Singleton (싱글톤) (2) | 2013.12.04 |
[C#] Excel 다루기 - 셀 크기 조절, 색 입히기, 셀 선택 (0) | 2013.11.24 |
엑셀 - Sheet 생성 과 Sheet 이름 바꾸기 (0) | 2013.11.21 |