Java Split()方法按点(.)切分注意细节
Posted jeremy1888
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Java Split()方法按点(.)切分注意细节相关的知识,希望对你有一定的参考价值。
按点(.)切分,必须要注意转义!如:split("\\.")。
例子:
- public class Test {
- public static void main(String[] args) {
- String s = "adhahd.txt";
- String t[] = s.split("\\.");
- for(int i = 0; i < t.length; i++){
- System.out.println(t[i]);
- }
- }
- }
public class Test { public static void main(String[] args) { String s = "adhahd.txt"; String t[] = s.split("\\."); for(int i = 0; i < t.length; i++){ System.out.println(t[i]); } } }
输出结果:
- adhahd
- txt
以上是关于Java Split()方法按点(.)切分注意细节的主要内容,如果未能解决你的问题,请参考以下文章