标签:分解 描述 代码 字符 image strong lun tip var
使用 . 分解 IP 的各个段,并打印,如:192.168.10.123,分解为 192 168 10 123
使用如下程序处理:
/** * Created by Miracle Luna on 2019/11/10 */ public class SplitIP { public static void main(String[] args) { String ip = "192.168.10.123"; String[] ipArr = ip.split("."); System.out.println("ipArr.length: " + ipArr.length ); for (String ipVar : ipArr) { System.out.println(ipVar); } } }
执行结果如下(并未按照预期将IP进行分解):
. 为特殊字符,需要使用转义字符进行转义。
代码修改如下:
/** * Created by Miracle Luna on 2019/11/10 */ public class SplitIP { public static void main(String[] args) { String ip = "192.168.10.123"; String[] ipArr = ip.split("\\."); System.out.println("ipArr.length: " + ipArr.length ); for (String ipVar : ipArr) { System.out.println(ipVar); } } }
执行结果如下(达到预期的分解效果):
Java split(".") 和 split("\\.")
标签:分解 描述 代码 字符 image strong lun tip var
原文地址:https://www.cnblogs.com/miracle-luna/p/11828745.html