How can I split a string in Java?
I would like to read a string until there is a space.
Then split it into a different string after the space.
e.g. String fullcmd = /join luke
I would like to split it into:
String cmd = /join
String name = luke
OR
String fullcmd = /leave luke
I would like to split it into:
String cmd = /leave
String name = luke
So that I can:
if(cmd.equals"/join") System.out.println(name + " joined.");
else if(cmd.equals"/leave" System.out.println(name + " left.");
I did think about doing String cmd = fullcmd.substring(0,5);
But cmd's length varies depending on the command.