I'm trying to explode this part of a json string from Google's currency calc:
"3 670.758 U.S. dollars"
I would like the value and the currency text separate, i was originally using a white-space as the separator, however i noticed when i tried to convert a 4 figure number Google was adding a space between the first and rest of the digits, to separate thousands from hundreds etc.
Any thoughts on how i should tackle this one?
I'm wondering if there is a way to explode with a white-space still but skip the first one?
Thanks in advance