码迷,mamicode.com
首页 > 编程语言 > 详细

Java之spilt()函数

时间:2018-05-07 21:09:09      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:void   AC   spl   处理   eth   code   ddr   todo   符号   

一、单个符号作为分隔符 

 

package com.regix;

public class FuncSpilt {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        String address = "上海|上海市|闵行区|吴中路";
        //String[] splitAddress=address.split("\\|"); 
        String splitAddress[]=address.split("\\|"); 
        System.out.println(splitAddress[0]+splitAddress[1]+splitAddress[2]+splitAddress[3]+splitAddress.length);
    }

}

 

二、多个符号作为分隔符 

package com.regix;

public class FuncSpilt {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
         String address="上海^上海市@闵行区#吴中路";
        String[] splitAddress=address.split("\\^|@|#");
        System.out.println(splitAddress[0]+splitAddress[1]+splitAddress[2]+splitAddress[3]+splitAddress.length);
    }

}

总结:

     (1)split表达式,其实就是一个正则表达式。*  ^ | 等符号在正则表达式中属于一种有特殊含义的字符,如果使用此种字符作为分隔符,必须使用转义符即\\加以转义;
          (2)如果使用多个分隔符则需要借助 | 符号,如二所示,但需要转义符的仍然要加上分隔符进行处理。

 

Java之spilt()函数

标签:void   AC   spl   处理   eth   code   ddr   todo   符号   

原文地址:https://www.cnblogs.com/iloverain/p/9004648.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!