I want to split a word string that every word is splited with a semicolon into a array.

Why is the length of this string just 2? How can I make the length of the array to always bee 6, because every line in my file is seperated into 6 fields seperated by a semincolon. And a fixed length of a array will make it much easier to create a object.

String line = "Name;Phone;;;;;";
String parts[] = line.split(";");

In this case the length of parts will be 2.

link|improve this question

50% accept rate
feedback

6 Answers

I would suggest using Apache StringUtils.

Specifically, I would use one of the following two methods:

splitPreserveAllTokens(String str, String separatorChars) 
splitPreserveAllTokens(String str, String separatorChars, int max) 

These methods will preserve empty tokens in your array. The second one will force your result to have a maximum size (6, for example), but could cause your final token to contain delimiters, if the number of words exceeded the limit.

link|improve this answer
Scanners are easier to use, and are expandable if he wants to process each one differently (e.g. my answer). I won't vote down, since this works, but I don't think its the nicest way to do this. – Jon Dec 13 '11 at 21:46
1  
@Jon I'll argue that Scanner is not "easier to use". String[] myArray = StringUtils.splitPreserveAllTokens("Name;Phone;;;;;", ";"); is pretty simple. If the input always contains a fixed number of delimiters, this is the most elegant solution. If not, I agree that another solution may be more appropriate. – Beau Grantham Dec 13 '11 at 21:49
feedback

You can declare array first like

  String parts[] = new string[6];
link|improve this answer
feedback

Try line.split(";",-1) instead.

link|improve this answer
This doesn't force the array to a size of 6, in fact its no different than a use without the limit. – Jon Dec 13 '11 at 21:44
@Jon It is different than if he were to not use a limit. If you supply a negative value as the limit empty trailing Strings are not discard. However if do not supply a limit empty trailing Strings are discarded. – Danny Dec 13 '11 at 22:00
The difference from the call with a single argument is that it allows empty values. In the OP's case, if there are 5 ';'s, you should end up with 6 elements. – Vlad Dec 13 '11 at 22:01
line.split(";",-1) actually returns 7 elements :) – Oleg Mikheev Dec 13 '11 at 22:21
Ah, you're right. There were 6 ';'s. – Vlad Dec 13 '11 at 23:16
feedback

The documentation of the String.split() method mention that the trailing empty string are skipped.

You may try the following to keep trailing empty strings:

String parts[] = line.split(";", -1);
link|improve this answer
it results in 7 tokens instead of 6 :) – Oleg Mikheev Dec 13 '11 at 22:24
feedback

I think you need to use

String parts[] = line.split(";",6);

As you can see from the javadoc you can enforce a limit on the split method.

link|improve this answer
but this doesn't force the array to a size of 6, it only limits it. – Jon Dec 13 '11 at 21:42
@Jon True. But, if it is always 6 fields separated by semicolons like the question states the result will always be a length of 6. – Danny Dec 13 '11 at 21:48
feedback

Use Google's Guava library it has an advanced Splitter

Splitter.on(';')
       .trimResults()
       .omitEmptyStrings()
       .split("Name;Phone;;;;;");
link|improve this answer
That's a big add-on to his program, there are easier ways. – Jon Dec 13 '11 at 21:47
I am sure that once he get that he'll find more uses for the lib :). And if you look at the other options offered I am not sure about easier ways – Arnon Rotem-Gal-Oz Dec 13 '11 at 21:50
feedback

Your Answer

 
or
required, but never shown

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