判断是否是IP地址

static bool IsIP(QString IP)
    {
        QRegExp RegExp("((2[0-4]\\d|25[0-5]|[01]?\\d\\d?)\\.){3}(2[0-4]\\d|25[0-5]|[01]?\\d\\d?)");
        return RegExp.exactMatch(IP);
    }

 

posted @ 2014-05-23 21:06  wiessharling  阅读(578)  评论(0编辑  收藏  举报