Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
public static void main(String args[]) {
    String sub="0110000";
    String a[]=sub.split("");
    System.out.println(Arrays.toString(a));
}

I get the output as

[, 0, 1, 1, 0, 0, 0, 0]

Why is the first element null? How can I get an array without null at the beginning?

share|improve this question
Why don't you use "0110000".toCharArray() and iterate through the chars? Or was the question as a matter of interest? – Koekiebox Dec 2 '10 at 11:55

5 Answers

up vote 9 down vote accepted

The first argument is actually not null, it is the empty string "". The reason why this is part of the output is that you split on the empty string.

The documentation of split says

The array returned by this method contains each substring of this string that is terminated by another substring that matches the given expression or is terminated by the end of the string.

Each position in your input string starts with an empty string (including position 0) thus the split function also splits the input at position 0. Since no characters are in front of position 0, this results in an empty string for the first element.

Try this instead:

String sub = "0110000";
String a[] = sub.split("(?<=.)");
System.out.println(Arrays.toString(a));

Output:

[0, 1, 1, 0, 0, 0, 0]

The pattern (?<=.) is a "zero-width positive lookbehind" that matches an arbitrary character (.). In words it says roughly "split on every empty string with some character in front of it".

share|improve this answer
Well, that may be correct, but it's not obvious why there is an empty string at the start. It would seem equally plausible that there are (an arbitary number of) empty strings between each letter and at the end. Why is the beginning distinguished in this way? – Paul Dec 2 '10 at 10:57
what should be done to remove it? – elle Dec 2 '10 at 10:57
1  
+1, good one... – codaddict Dec 2 '10 at 10:59
@Paul, good point. Clarified. – aioobe Dec 2 '10 at 11:00
Added an explanation for that. – aioobe Dec 2 '10 at 11:05

It's a quirk off String#split the string it takes is actually a regular expression which matches the empty string that is at the beginning of your input.

try toCharArray() instead:

public static void main(String args[])
{
    String sub="0110000";
    char a[]=sub.toCharArray();
    System.out.println(Arrays.toString(a));
}

I'll leave it as a exercise for the reader to convert the char[] array into String[]

share|improve this answer
exercise for the reader to convert the char[] array into String[] I wonder why though. I don't see the point of using an array of 1char strings rather than a char[]. +1, BTW – Sean Patrick Floyd Dec 2 '10 at 11:04
I agree, but just realised that the guy asked for an array of String's from a String, not an array of char's from a string – Gareth Davis Dec 2 '10 at 11:18

It's not null, it's an empty string. That's an important distinction!

You can get what you want by using this construct:

 String[] tokens = "0110000".split("(?<=.)";
 // the (?<=.) means that there must be a character
 // before the match, hence the initial empty string won't match
 System.out.println(Arrays.toString(tokens)));

But I don't think that's a good idea. I can't imagine why you want to split a String into an array of one-letter Strings. You probably should use this instead:

char[] chars = "001100".toCharArray();
share|improve this answer

Because "" matches at the beginning of the string. It also matches at the end, but split() discards the trailing empty string.

share|improve this answer

A String always start with an empty string. An empty string contains no characters. You can check the similar question here.

share|improve this answer
That question was extremely similar ;) – aioobe Dec 2 '10 at 11:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.