- public class Test1
- {
- public static void main(String[] args)
- {
- method_split();
- }
- public static void sop(Object obj)
- {
- System.out.println(obj);
- }
- public static void method_split()
- {
- String s="zhangsan.sili.wangwu";
- String [] arr=s.split("\\."); // 把这里的分隔符换一下,加两个斜杠就可以输出了
- for (int x=0;x<arr.length ;x++ )
- {
- System.out.println(arr[x].toString());
- }
- }
- }
复制代码 split 方法
将一个字符串分割为子字符串,然后将结果作为字符串数组返回。
经验分享:
1、分隔符为“.”(无输出),“|”(不能得到正确结果)转义字符时,“*”,“+”时出错抛出异常,都必须在前面加必须得加"\\",如split(\\|);
2、如果用"\"作为分隔,就得写成这样:String.split("\\\\"),因为在Java中是用"\\"来表示"\"的,字符串得写成这样:String Str="a\\b\\c";
?转义字符,必须得加"\\";
3、如果在一个字符串中有多个分隔符,可以用"|"作为连字符,比如:String str="Java string-split#test",可以用Str.split(" |-|#")把每个字符串分开;
|