其他分享
首页 > 其他分享> > split() 方法

split() 方法

作者:互联网

split() 方法根据匹配给定的正则表达式来拆分字符串

注意: .$| 和 ***** 等转义字符,必须得加 \\

注意:多个分隔符,可以用 | 作为连字符。

语法:

public String[] split(String regex, int limit)
public String[] split(String regex)

参数:

只有一个参数的split方法的作用:类似于双参数split方法的 limit参数为0。 因此,结尾的空字符串不包含在结果数组中。
limit等于零,式将尽可能多拆分字符串,数组可以具有任何长度,并且将丢弃尾随空字符串。

返回值:字符串数组。

举例:

public class Test {
    public static void main(String args[]) {
        String str = new String("Welcome-to-Runoob");
 
        System.out.println("- 分隔符返回值 :" );
        for (String retval: str.split("-")){
            System.out.println(retval);
        }
 
        System.out.println("");
        System.out.println("- 分隔符设置分割份数返回值 :" );
        for (String retval: str.split("-", 2)){
            System.out.println(retval);
        }
 
        System.out.println("");
        String str2 = new String("www.runoob.com");
        System.out.println("转义字符返回值 :" );
        for (String retval: str2.split("\\.", 3)){
            System.out.println(retval);
        }
 
        System.out.println("");
        String str3 = new String("acount=? and uu =? or n=?");
        System.out.println("多个分隔符返回值 :" );
        for (String retval: str3.split("and|or")){
            System.out.println(retval);
        }
    }
}

结果:

- 分隔符返回值 :
Welcome
to
Runoob

- 分隔符设置分割份数返回值 :
Welcome
to-Runoob

转义字符返回值 :
www
runoob
com

多个分隔符返回值 :
acount=? 
 uu =? 
 n=?

标签:String,System,split,println,返回值,方法,out
来源: https://www.cnblogs.com/yu-zexin/p/16596731.html