Say I have a string:
{"id":"35","value":"0.2"},{"id":"1462","value":"0.2"},
{"id":"1109","value":"0.2"},{"id":"220","value":"0.2"},
{"id":"211","value":"0.1"}
I need to extract substrings in each {}
Than create columns with an id in the header and a number corresponding to the id like:
35 1462 1109 220 211
----------
0.2 0.2 0.2 0.2 0.1