在长字符串中提取IP地址

这个实现使用了正则表达式的一些基础函数,来提取IP地址。它首先定义一个regex对象来匹配IP地址字符串的模式。(\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3})将匹配任何四个数字序列,并用点号分隔它们。此模式使用括号,以便可以提取匹配部分作为子字符串。

然后,它使用regex_search循环遍历输入字符串,并使用变量matches来存储关于匹配项的信息。对于每个匹配项,它将IP地址提取为match字符串,并调用is_valid_ip_address函数来验证它是否有效。如果IP地址有效,则它将该地址打印到标准输出中。

最后,is_valid_ip_address函数使用另一个正则表达式来验证IP地址的格式。如果它与模式匹配,将返回true,否则将返回false。

#include 
#include 
#include 

using namespace std;

bool is_valid_ip_address(const string& str);

int main()
{
    string str = "The IP address of my server is 192.168.0.1. Please use it to connect.";
    
    regex pattern(R"((\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}))");
    
    smatch matches;
    
    while (regex_search(str, matches, pattern))
    {
        string match = matches[1].str();
        
        if (is_valid_ip_address(match))
        {
            cout << "Found IP address: " << match << endl;
        }
        
        str = matches.suffix().str();
    }
    
    return 0;
}

bool is_valid_ip_address(const string& str)
{
    regex pattern(R"((25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?))");
    
    return regex_match(str, pattern);
}

你可能感兴趣的:(tcp/ip,网络协议)