C++的<regex>
庫支持正則表達式。你可以使用std::regex
類來創建一個正則表達式對象,然后使用它的成員函數來執行匹配操作。
下面是一個簡單的示例,演示如何使用C++的<regex>
庫進行正則表達式匹配:
#include <iostream>
#include <string>
#include <regex>
int main() {
std::string str = "Hello, my email is example@example.com and my phone number is 123-456-7890";
// 創建一個正則表達式對象,匹配郵箱地址
std::regex email_regex(R"(\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b)");
// 在字符串中查找所有匹配的郵箱地址
std::smatch matches;
std::string::const_iterator searchStart(str.cbegin());
while (std::regex_search(searchStart, str.cend(), matches, email_regex)) {
std::cout << "Found email: " << matches[0] << std::endl;
searchStart = matches.suffix().first;
}
// 創建一個正則表達式對象,匹配電話號碼
std::regex phone_regex(R"(\d{3}-\d{3}-\d{4})");
// 在字符串中查找所有匹配的電話號碼
searchStart = str.cbegin();
while (std::regex_search(searchStart, str.cend(), matches, phone_regex)) {
std::cout << "Found phone number: " << matches[0] << std::endl;
searchStart = matches.suffix().first;
}
return 0;
}
在上面的示例中,我們創建了兩個正則表達式對象:email_regex
用于匹配郵箱地址,phone_regex
用于匹配電話號碼。然后,我們使用std::regex_search
函數在字符串str
中查找所有匹配的郵箱地址和電話號碼,并將它們打印出來。
注意,正則表達式中的特殊字符需要進行轉義。例如,在上面的示例中,我們在正則表達式中使用了\b
來表示單詞邊界,使用了\.
來表示點字符。這是因為這些字符在正則表達式中具有特殊的含義。