在 C++ 中,你可以使用 <regex>
库来处理正则表达式
#include <iostream>
#include <string>
#include <regex>
int main() {
std::string input = "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(input.cbegin());
while (std::regex_search(searchStart, input.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 = input.cbegin();
while (std::regex_search(searchStart, input.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()
函数在输入字符串中查找所有匹配的邮箱地址和电话号码,并将它们打印出来。