在平时的项目中,有的时候需要我们输入IP地址,来和某一个电脑或其他的物体通讯,这就需要检查一下我们输入的IP地址的格式是否正确。效果如下:
废话不多说,直接上代码吧,都有注释,简单易懂
/// <summary>
/// 判断IP
/// </summary>
/// <param name="strJudgeString"></param>
/// <returns></returns>
private 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[] { '.' }); // textBox1.Text.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格式
Debug.Log("不符合IP格式");
_Result = false;
}
}
}
else
{
Debug.Log("不符合IP格式");
_Result = false;
}
}
else
{
//输入非数字则提示,不符合IP格式
_Result = false;
}
return _Result;
}