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

正则表达式

时间:2020-06-13 19:26:57      阅读:49      评论:0      收藏:0      [点我收藏+]

标签:replace   www   tps   ace   front   ice   htm   com   device   

正则表达式学习网址:https://www.runoob.com/regexp/regexp-tutorial.html

正则表达式在线测试:https://c.runoob.com/front-end/854

正则表达式学习示例

1、^InterGateway\.\d\.(user|name)$

    可以匹配 InterGateway.1.user  或 InterGateway.2.name

 2、regex_replace

      string str = "InterGateway.device.1.user";

      regex pattern("^(InterGateway\.device\.)\d\.(user|name)$");

      regex_replace(str, pattern, "$1$2")    ===>  InterGateway.device.user

正则表达式

标签:replace   www   tps   ace   front   ice   htm   com   device   

原文地址:https://www.cnblogs.com/koudai191209/p/12289935.html

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