I get the following JsonNode with JsonNode
results = parentNode.get(GEOMETRY);
yields results: "marks (79.89 90.78)"
The problem is, I get the whole string "marks (79.89 90.78)" in results. But I need to fetch the doubles present inside () braces seperately.
Any idea as to how I can get the double numbers from this string?
I can use regular expression to get the numbers from the string(results string), but I want to know if there is any other workaround to do it.