I need some help to split up a string. Right now, my string contains this:
"RM 8 Text"
Now I only want Text to be printed in my string builder using append, how do I get rid of the RM 8 in the start of the string?
Right now I have done it this way, but there has to be an easier way.
String[] lines = fromServer.split("\\s+");
String line2 = lines[2];
logbuilder.append(line2);