in reply to Modify Data type in CSV
update: As graff pointed you shouldn't need the conversion function. Take this code for example
perl -e'$val = 9e-05; print "value = ", $val*2, $/;' __END__ value = 0.00018
If you find the command line version of the program confusing just focus on the pieces after -e'. Everything is a regular perl code. I am just assingning a value using scientific notation and use it in regular airthmetic and get expexted results. Unless you are doing something fancy with your conversion i wouldn't go for a module
-SK
|
|---|