I have a series of strings, each of the format :
"{3.242, 87611}, {5.658, 7.3731}, {5.547, 8.7631} ......"
Each pair of numbers in curly brackets represents one Latitude/Longitude point (and each number is of type double).
I want to parse the string so that each point in the string is represented as a separate Lat/Lon object, that I store in a list of points.
I am pretty new to Java (and parsing). I have been looking at a lot of examples but I'm still really confused as to how to even begin. How do I go about doing this?