'string'에 해당되는 글 1건

  1. 2012.10.17 [C#] 문자열에 특정 문자열 포함 여부 확인하는 방법
Dev/C#2012. 10. 17. 12:00

String.Contains 메소드 사용

  1. // This example demonstrates the String.Contains() method   
  2. using System;  
  3.   
  4. class Sample   
  5. {  
  6.     public static void Main()   
  7.     {  
  8.     string s1 = "The quick brown fox jumps over the lazy dog";  
  9.     string s2 = "fox";  
  10.     bool b;  
  11.     b = s1.Contains(s2);  
  12.     Console.WriteLine("Is the string, s2, in the string, s1?: {0}", b);  
  13.     }  
  14. }  
  15. /* 
  16. This example produces the following results: 
  17.  
  18. Is the string, s2, in the string, s1?: True 
  19. */  

Posted by 놀란