I need to parse this into strings in the most efficient way. I currently have this line
D[date-string] T[time-string] N[name-string] M[message-string]
Needs to be parsed into four strings respectively,
private String time; //would equal time-string
private String date; //would equal date-string
private String name; //would equal name-string
private String message; //would equal message-string
Is there an easy way to do this?