Hi,
I have a String looks like this
String read = "1130:5813|1293:5803|1300:5755|1187:5731|"
As you can see that there are 4 pair of integer values are there.
i want to add there values into the list something like this
a = 1130
b = 5813
groupIt pair = new groupIt(a,b);
List<groupIt> group = new ArrayList<groupIt>();
group.add(pair);
How can i do this for the 4 pair of String. You can use pattern.compile() -- stuff
As you know its Java.
thanks