首页 > 代码库 > C++11中正則表達式測试
C++11中正則表達式測试
VC++2010已经支持regex了, 能够用来编译下述代码.
#include <string> #include <regex> #include <iostream> using namespace std; /* 測试C++11中的正則表達式. */ int main() { //定义正則表達式,匹配时间格式 regex testRegex("[0-9]{2}:[0-9]{2}:[0-9]{2}\\.[0-9]{3}"); //要匹配的字符串 string strText("OTA LOG SFTCH/MPA Stream 2/Reservation Accept 07:23:50.580 Channel: 147, Pilot PN: 232"); cmatch result; //结果 //search 是匹配子字符串, match 是匹配整个字符串 if (regex_search(strText.c_str(), result, testRegex, regex_constants::format_default)) { cout << result.str() << endl; } else { cout << "fail." << endl; } }
C++11中正則表達式測试
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。