C++基础-正则表达式 regex_match(匹配) regex_search(查找) regex_replace(替换)
2021/7/26 1:36:08
本文主要是介绍C++基础-正则表达式 regex_match(匹配) regex_search(查找) regex_replace(替换),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
正则匹配中的基础符号
^开头 ()组 []或, {}几次 $结尾
1.regex_match(匹配) 判断当前的结构体是否符合正则匹配规则
#include<iostream> #include<regex> using namespace std; //regex_match 匹配 //regex_search 查找 //regex_replace 替换 int main1() { regex reg("([a-zA-Z]*) ([a-zA-Z]*)$"); cmatch what; //匹配的词语检索出来 bool isit = regex_match("id admin", what, reg); // for(int i = 0; i !=what.size(); ++i) //输出匹配信息 { cout << what[i+1].first << "\t"; } cout << "match" << endl; if(isit) { }else { cout << "not match" << endl; } cin.get(); }
2.regex_search 判断数字是否在目标结构体中
int main3() { cmatch match; regex reg("\\d+"); //数字 char str[50] = ("hello 8848 hello huahua180"); bool isOk = regex_search(str, match, reg); std::cout << isOk << endl; if(isOk) { for(int i = 0; i != match.size(); i++) { cout << match[i].first << endl; } } cin.get(); }
3.regex_replace(替换)
将符合匹配条件的数字替换成其他的类型
int main() { cmatch match; regex reg("\\d+"); //数字 char str[50] = ("hello 8848, hello huahua180"); cout << regex_replace(str, reg, "ABCDEFG") << endl; cin.get(); }
这篇关于C++基础-正则表达式 regex_match(匹配) regex_search(查找) regex_replace(替换)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-20获取apk的md5值有哪些方法?-icode9专业技术文章分享
- 2024-11-20xml报文没有传 IdentCode ,为什么正常解析没报错呢?-icode9专业技术文章分享
- 2024-11-20如何知道代码有没有进行 Schema 验证?-icode9专业技术文章分享
- 2024-11-20Mycat教程:新手快速入门指南
- 2024-11-20WebSocket入门:轻松掌握WebSocket基础
- 2024-11-19WebSocket入门指南:轻松搭建实时通信应用
- 2024-11-19Nacos安装资料详解:新手入门教程
- 2024-11-19Nacos安装资料:新手入门教程
- 2024-11-19升级 Gerrit 时有哪些注意事项?-icode9专业技术文章分享
- 2024-11-19pnpm是什么?-icode9专业技术文章分享