1 回答
TA贡献1796条经验 获得超4个赞
boostSTL补充regex其模块各类别本文记录用引入文件1.regex_matchregexreg("\\d{3}");stringstr="123";boolb=regex_match(str,reg);2.regex_replace(strings,regexe,stringt)s匹配e串替换tregexreg("(colo)(u)(r)",boost::regex::icase|boost::regex::perl);strings="Colour,colour,color,colOurize";s=regex_replace(s,reg,"$1$3");t$n代表reg第n括号内容$3表示r$1表示colo段代码表示colour换colorboost::regex::icase/boost::regex::perl标志关表示忽略写需要标志关打需要默认关闭regex_replace修改原字符串新串返3.erase_all_regex(string,regex)(boost::algorithm::erase_all_regexinheader)删除满足regex所串原串直接修改#includeerase_all_regex(str,boost::regex("[\n|\t|\r]"))删除字符串str所空格4.split_regex(序列式容器,string,regex)()割符regex格式割string结存放容器#includevectorfields;split_regex(fields,str,boost::regex("[\\*|X]"));str="5*6"fields存放56str修改5.split(序列式容器,string,Predicate),()#include#includevectorresult;split(result,school_code,is_any_of(";"));is_any_of用于判断school_code否包含";";割school_code存放result修改原串
添加回答
举报