I have the following String list which is constructed as:
String[] messageList = messages.split("(?<=\\G.{" + 9 + "})");
I want to be able to add new strings to the list but of course this would need to be an arraylist.
How could I make an array list from this string list?
Thanks