C#判断IP地址(IPV4)格式是否正确

添加引用  using System.Text.RegularExpressions;

 #region  判断IP地址格式是否正确

        ///
        /// 判断ip地址是否正确,正确返回true 错误false
        ///

        /// 需要判断的字符串(IP地址)
        /// TRUE OR FALSE
    private bool IsRightIP(string strLocalIP)
        {
            bool bFlag = false;
            bool Result = true;


            Regex regex = new Regex("^[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}.[0-9]{1,3}$");
            bFlag = regex.IsMatch(strLocalIP);
            if (bFlag == true)
            {
                string[] strTemp = strLocalIP.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不符合返回false
                        {                           
                            Result = false;                     
                        }
                    }
                }
                else
                {
                    Result = false;
                }
            }
            else
            {
                //输入非数字则提示,不符合IP格式
                //MessageBox.Show("不符合IP格式");
                Result = false;               
            }
            return Result;
        }

        #endregion

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