deelx正则例子

摘要: deelx正则例子贪婪匹配#include <stdio.h>#include "deelx.h"int main(int argc, char * argv[]){char text[] = "bbbbbbbba():asfsdgdsg()+sf+ssfd";static CRegexpT <char> regexp("a.*d"); //贪婪匹配MatchResult result = regexp.Match(text);while ( result.IsMatched() ){printf(" 阅读全文
posted @ 2013-04-16 14:54 大灰羊 阅读(176) 评论(0) 推荐(0)