I'd like to find and convert all scientific notation strings in a csv file to decimal notation, e.g.:
1.0e-05 to 0.00001
How can I do that in ruby?
|
|
|
Just use string conversion. The necessary coercion to float will be done automatically:
Adjust as necessary to get more or less accuracy. For example:
If you want to get real fancy and chop off unnecessary zeros at the end, here's one way. (Hopefully someone will suggest something more elegant; I couldn't think of anything):
|
||||
|
|