regex 정규필터식 간단 구문 예제
프로그래밍 언어/C++ 2014. 1. 16. 00:57
Colored By Color Scripter™12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061// ConsoleApplication1.cpp : 콘솔 응용 프로그램에 대한 진입점을 정의합니다.// #include "stdafx.h"#include // regex matchbool match_regex(TCHAR* strData, TCHAR* pattern){#ifdef _UNICODE wstring data(strData); wsmatch regexMatchResult; wregex mPattern(pattern);#else string data(st..