I am relatively new to java programming. How would you split following lines of Strings separated by semicolons?
String; String; String; String, String; String;;
Your answer is in the javadoc.
String toto = "A;B;C;D"; String[] tokens = toto.split(";");