I am trying to extract scientific notation from strings like:
`#DataCGSConversionFactor[0] = 1.0051900924519e-29`
Unfortunately because of the first 0 that isn't a part of the number I want, the other solutions I have tried don't work, giving:
ValueError: invalid literal for float(): 0]
Thanks in advance.