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.