问题描述
在做一个自动修改IP的程序,遇到一个问题,在调用Win32_NetworkAdapterConfiguration时,需要将string的IP地址转换成string[],不知道怎么办了,过来请大家帮帮忙,先谢了!
解决方案
解决方案二:
用点号作为分隔符分隔一下就好了吧?split
解决方案三:
stringip="192.168.1.1";string[]=ipArray.split('.');
解决方案四:
引用2楼steden的回复:
C#codestringip="192.168.1.1";string[]=ipArray.split('.');
顶
解决方案五:
char[]dot=newchar[]{'.'};string[]ipArr=ip.Split(dot);if(ipArr.Length==3)ip=ip+".0";ipArr=ip.Split(dot);
解决方案六:
引用2楼steden的回复:
C#codestringip="192.168.1.1";string[]=ipArray.split('.');
2楼的就可以
解决方案七:
stringip="192.168.1.1";string[]=ipArray.split('.');这种方法简洁,且高效
解决方案八:
stringip="192.168.1.1";string[]ipArray=ip.Split('.');
时间: 2024-10-17 10:20:53