I have a String as below
String combinedString = "10.15%34.23%67.8% 89.00%100.00%44.44%";
As you can see above, there is a space between 67.8% and 89.00%
I would want to split them into two String arrays or two strings as below
String[] firstStringArray = {10.15%,34.23%,67.8%};
String[] secondStringArray = {89.00%, 100.00%, 44.44%};
or
String firstString = "10.15%34.23%67.8%";
String secondString = "89.00%100.00%44.44%";
Any idea on this please?