C#判断IP地址是否正确

 
        /// 
        /// 判断输入的ip地址是否正确,返回TRUE or FALSE
        /// 
        /// 等待判断的字符串
        /// TRUE OR FALSE
        public static bool JudgeIPFormat(string strJudgeString)
        {
            bool blnTest = false;
            bool _Result = true;
 
            Regex regex = new Regex("^[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}$");
            blnTest = regex.IsMatch(strJudgeString);
            if (blnTest == true)
            {
                string[] strTemp = strJudgeString.Split(new char[] { '.' }); 
                int nDotCount = strTemp.Length - 1; //字符串中.的数量,若.的数量小于3,则是非法的ip地址
                if (3 == nDotCount)//判断字符串中.的数量
                {
                    for (int i = 0; i < strTemp.Length; i++)
                    {
                        if (Convert.ToInt32(strTemp[i]) > 255)
                        { //大于255则提示,不符合IP格式 
                            _Result = false; 
                        }
                    }
                }
                else
                { 
                    _Result = false;
                }
            }
            else
            {
                //输入非数字则提示,不符合IP格式 
                _Result = false; 
            }
            return _Result;
        } 

本文来源于https://blog.csdn.net/tinanbao/article/details/77315351

你可能感兴趣的:(C#)