Skip to content

Java 使用 String.split() 根据点号分隔字符串

根据 . 分隔字符串时,不能使用 String.split("."),正确写法是

java
String.split("\\.")

参考 : Java String.split() 用法小结