received a set of JSON
data about the weather. I want to extract the temperature now, but it can"t include . How can I intercept it? The current method of
is to do it with regular expressions, but what I want to ask is, can it be done without regular expressions?
JSON data example:
"High temperature 31.0C",
"low temperature 26.0C"
extract 31 and 26 of them.