How can I extract the float variable from a string in a JSON file?
This is an example of a possible string (characters stop after the comma):
"x": "1.234567",
The string has 12 blank spaces before the double quotes and the number I need to extract is 1.234567
The decimals after the dot could be more than 6.
The double quotes are also in the string, while the final comma is not always there