Home  >  Article  >  Java  >  Detailed explanation of the use of Java's split method

Detailed explanation of the use of Java's split method

高洛峰
高洛峰Original
2017-01-18 15:36:081335browse

I believe everyone often uses the split method of String, but have you ever encountered the following situation:

Think about the execution result of the following code

public static void main(String[] args) {
    // TODO Auto-generated method stub
 
    String str1 = "a,b,c,,,a";
    String str2 = "a,b,c,,,";
    String str3 = "a,b,c, , ,";
    String[] s1 = str1.split(",");
    String[] s2 = str2.split(",");
    String[] s3 = str3.split(",");
     System.out.println("str1长度:"+s1.length);
    System.out.println("str2长度:"+s2.length);
    System.out.println("str3长度:"+s3.length);
}

Execution result:

Detailed explanation of the use of Javas split method

Why does such a result occur? Searching the API found a solution

Solution:

By looking at the API, we found that our commonly used split method passes 0 by default. Now the solution to solve the problem of empty str2 output is to pass the second parameter as a negative number, that is

public static void main(String[] args) {
  // TODO Auto-generated method stub
 
  String str1 = "a,b,c,,,a";
  String str2 = "a,b,c,,,";
  String str3 = "a,b,c, , ,";
  String[] s1 = str1.split(",");
  String[] s2 = str2.split(",",-1);
  String[] s3 = str3.split(",",-1);
   
  System.out.println("str1长度:"+s1.length);
  System.out.println("str2长度:"+s2.length);
  System.out.println("str3长度:"+s3.length);
}

After searching the API, it was found that there are two split overloaded methods in the String class

1.public String[] split(String regex)

Split this according to the match of the given regular expression string.

This method acts like calling the two-argument split method with the given expression and the constraint argument 0. Therefore, the terminating empty string is not included in the resulting array.

For example, the string "boo:and:foo" using these expressions produces the following results:

Regex results

: { "boo", "and", "foo" }
o { "b", "", ":and:f" }

Parameters:
regex - delimited regular expression
Returns:
Array of string determined by splitting this string based on matches of the given regular expression
Throws:
PatternSyntaxException - if Invalid syntax for regular expression

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

Split this string based on matching the given regular expression.

The array returned by this method contains substrings of this string, each of which is terminated by another substring that matches the given expression, or by the end of this string. The substrings in the array are arranged in the order in which they appear in this string. If the expression does not match any part of the input, the resulting array has only one element, the string.

The limit parameter controls the number of times the pattern is applied, thus affecting the length of the resulting array. If the limit n is greater than 0, then the pattern will be applied at most n - 1 times, the length of the array will not be greater than n, and the last item of the array will contain all input beyond the last matched delimiter. If n is non-positive, the pattern is applied as many times as possible, and the array can be of any length. If n is 0, then the pattern will be applied as many times as possible, the array can be of any length, and the terminating empty string will be discarded.

For example, the string "boo:and:foo" using these parameters produces the following result:

Regex Limit result

: 2 { "boo", "and:foo" }
: 5 { "boo", "and", "foo" }
: -2 { "boo", "and", "foo" }
o 5 { "b", "", ":and:f", "", "" }
o -2 { "b", "", ":and:f", "", "" }
o 0 { "b", "", ":and:f" }

Call this method str.split(regex , n) The form produces exactly the same result as the following expression:

Pattern.compile(regex).split(str, n)

Parameters:

regex - Delimited regular expression
limit - Result threshold, as described above

Returns:
Array of strings that split this character based on a match of the given regular expression The string is determined

Throws:
PatternSyntaxException - If the syntax of the regular expression is invalid

For more detailed explanations on the use of Java's split method, please pay attention to the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn