码迷,mamicode.com
首页 > 其他好文 > 详细

boost正则将标点分开

时间:2015-05-27 17:29:08      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:boost   regex   


        //将标点分开
        boost::wregex rgx(L"(‘)|(\\.)|(,)",boost::wregex::icase| boost::wregex::perl);
        line = regex_replace(line,rgx,L" $1$2$3 ");

boost正则将标点分开

标签:boost   regex   

原文地址:http://blog.csdn.net/lampqiu/article/details/46047843

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!