如下例子,想获取"192.168.100.10" 中的“10”,代码如下:
string ip = "192.168.100.10" string[] strIp=ip.Split('.'); //注意是'',不是""
string lastNum=strIp[3];