I have the following text string: {"CAD":1.404,"EUR":0.925,"MXN":25.103,"USD":1,"SGD":1.433,"AUD":1.649,"GBP":0.813}
and I'd like to parse it so that it shows up in a few columns, like this:
What would be the simplest way to achieve this?
and I'd like to parse it so that it shows up in a few columns, like this:
CAD | 1.404 | EUR | 0.925 | MXN | 25.103 | USD | 1 | SGD | 1.433 | AUD | 1.649 | GBP | ?0.813 |