메뉴 건너뛰기

app

[C++] 정규식을 사용하기 위한 clr

박영식2011.05.05 00:37조회 수 3053댓글 0

  • 1
    • 글자 크기

#using <system.dll>

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

int _tmain(int argc, _TCHAR* argv[])
{
//FindnFile("D:riss4uWebContent");
int words = 0;
   String^ pattern = "[a-zA-Z]*";
   Console::WriteLine( "pattern : '{0}'", pattern );
   Regex^ regex = gcnew Regex( pattern );

   String^ line = "onettwo three:four,five six  seven";   
   Console::WriteLine( "text : '{0}'", line );
   for( Match^ match = regex->Match( line ); 
        match->Success; match = match->NextMatch( ) ) 
   {
      if( match->Value->Length > 0 )
      {
         words++;
         Console::WriteLine( "{0}", match->Value );
      }
   }
   Console::WriteLine( "Number of Words : {0}", words );

   return 0;
}


공통언어런타임 지원을 설정해야 한다.(프로젝트 -> 속성 에서 설정)

clr.jpg


박영식 (비회원)
  • 1
    • 글자 크기
[Gdata] PHP를 이용해 Spread sheet 접근 (by 박영식) [C++] 하위 폴더 검색 최간편 소스 (by 박영식)

댓글 달기

박영식
2011.09.22 조회 2415
박영식
2011.09.21 조회 2330
이전 1 2 3 4 5 6 7 8 9 10 11... 14다음
첨부 (1)
clr.jpg
77.3KB / Download 41
위로