다음을 통해 공유


방법: 단순 일치에 정규식 사용

업데이트: 2007년 11월

다음 코드 예제에서는 정규식을 사용하여 정확하게 일치하는 부분 문자열을 찾습니다. 두 개의 문자열을 입력으로 사용하는 정적 IsMatch 메서드를 통해 검색을 수행합니다. 첫 번째 문자열은 검색할 문자열이고, 두 번째 문자열은 검색할 패턴입니다.

예제

// regex_simple.cpp
// compile with: /clr
#using <System.dll>

using namespace System;
using namespace System::Text::RegularExpressions;

int main()
{
   array<String^>^ sentence = 
   {
      "cow over the moon",
      "Betsy the Cow",
      "cowering in the corner",
      "no match here"
   };
    
   String^ matchStr = "cow";
   for (int i=0; i<sentence->Length; i++)
   {
      Console::Write( "{0,24}", sentence[i] );
      if ( Regex::IsMatch( sentence[i], matchStr,
                     RegexOptions::IgnoreCase ) )
         Console::WriteLine("  (match for '{0}' found)", matchStr);
      else
         Console::WriteLine("");
   }
   return 0;
}

참고 항목

기타 리소스

.NET Framework 정규식

.NET 프로그래밍 가이드