正则表达式判断IP地址

static bool IsIPAddr(String^ str)
{
if (!(String::IsNullOrEmpty(str)))
{
Regex^ rx = gcnew Regex("^((2[0-4]\\d|25[0-5]|[01]?\\d\\d?)\\.){3}(2[0-4]\\d|25[0-5]|[01]?\\d\\d?)$", RegexOptions::IgnorePatternWhitespace);
return rx->IsMatch(str);
}
return false;
}

你可能感兴趣的:(C++,.net,正则表达式)