How can I parse an Item in an Array? Here is an example of where this is needed:
String thing= Array1;
final String[] SplitArray = thing.substring(1).split(" ");
This splits it on the space and makes the array SplitArray now how can i split each item in the array on the ;? Say my array is Array1 = Hello;Hellothere Hi;Hithere