Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does "||".split("\\|").length return 0 and not 3?

When there are adjacent separators in the split expression I expect null or an empty string--not have it eliminated.

The Java code is below:

public class splitter {
    public static void main(String args[]) {
        int size = "||".split("\\|").length;
        assert size == 3 : "size should be 3 and not " + size;
    }
}

I expected to get either { "", "", "" } or { null, null, null }. Either would be fine.

Perhaps there's a regular expression that will not be fooled by empty words?

like image 997
tggagne Avatar asked Jul 17 '12 01:07

tggagne


1 Answers

According to the javadoc:

This method works as if by invoking the two-argument split method with the given expression and a limit argument of zero. Trailing empty strings are therefore not included in the resulting array.

The javadoc for split(String, int) elaborates:

The limit parameter controls the number of times the pattern is applied and therefore affects the length of the resulting array. If the limit n is greater than zero then the pattern will be applied at most n - 1 times, the array's length will be no greater than n, and the array's last entry will contain all input beyond the last matched delimiter. If n is non-positive then the pattern will be applied as many times as possible and the array can have any length. If n is zero then the pattern will be applied as many times as possible, the array can have any length, and trailing empty strings will be discarded.

(emphasis mine)

So to return an array of empty strings, call "||".split("\\|", -1)

like image 146
Paul Bellora Avatar answered Nov 04 '22 00:11

Paul Bellora