65,189
社区成员




#include "deelx.h"
// 表达式对象
CRegexpT <wchar_t> re(L"[\\u4e00-\\u9fa5]");
// 查找结果
MatchResult result = re.Match(L"U劳saaaaaaaaaa翟仍Yυ荀过υ");
// 是否找到匹配
if( result.IsMatched() )
{
int beginPos = result.GetStart();
int endPos = result.GetEnd();
}