in reply to Conversion from Scientific Notation

Probably my favorite thing about Perl (it is, at the least Waaay up there) is the scalar typing system. Read about it here: Perl variable types. In your case, it's great because you don't need to parse that expression - store the whole thing as a string, and Perl will automatically use it as a float whenever you want (i.e. when you use it in a numeric context).
  • Comment on Re: Conversion from Scientific Notation