您好,登錄后才能下訂單哦!
下面看下c++通過正則表達式提取關鍵字,代碼如下所示:
string text = "岳云鵬的對象叫鐵錘"; regex pattern("(.*)的對象叫(.*)"); smatch results; if (regex_match(text, results, pattern)) { for (auto it = results.begin(); it != results.end(); ++it) cout << *it << endl; } else { cout << "match failed: " << text << endl; } // 岳云鵬的對象叫鐵錘 // 岳云鵬 // 鐵錘
下面看下C++正則表達式提取匹配到的字符串
/* * 輸入是789.123.456, 輸出的是789 */ void get() { std::regex ip_reg("(.*)\.123\.456"); std::smatch matchResult; string inputStr; std::getline(std::cin,inputStr); //正則匹配 if (std::regex_match(inputStr,matchResult,ip_reg)) { cout << "Match: "; //打印子表達式結果 for (size_t i = 1; i < matchResult.size(); ++i) { cout << matchResult[i] << " "; } } else { cout << "Not Match!"; } }
總結
以上所述是小編給大家介紹的c++使用正則表達式提取關鍵字的方法,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。