String.Contains 메소드 사용
- // This example demonstrates the String.Contains() method
- using System;
- class Sample
- {
- public static void Main()
- {
- string s1 = "The quick brown fox jumps over the lazy dog";
- string s2 = "fox";
- bool b;
- b = s1.Contains(s2);
- Console.WriteLine("Is the string, s2, in the string, s1?: {0}", b);
- }
- }
- /*
- This example produces the following results:
- Is the string, s2, in the string, s1?: True
- */
'Dev > C#' 카테고리의 다른 글
[C#,SQL] SqlDatareader 로 Float 데이터 가져오기 (0) | 2012.11.22 |
---|---|
[C#] GMAIL(구글메일) 이용하여 파일첨부 이메일 보내기 (0) | 2012.10.18 |
[C#] 윈도우 사용자 계정 가져오기 (0) | 2012.10.17 |
[C#] double 을 이용한 Ceiling 오류 처리 (0) | 2012.06.19 |
[C#] 정적 메소드(Static Method)와 인스턴스 메소드(Instance Method) 차이 (0) | 2012.03.23 |