Closed GoogleCodeExporter closed 8 years ago
You might try, Edit Cells --> Common Transforms --> To text
or
before you create your project, try un-checking "Auto-detect value types"
then try your splitByLength again.
Original comment by thadguidry
on 20 Nov 2010 at 5:11
Numbers are stored as Doubles (ie floating point numbers). By default when
they are converted to strings, if they are less than .001 or greater than or
equal to 10^7, then it is represented in so-called "computerized scientific
notation."
If you want to treat a string of digits as a string, you should make sure that
they don't get turned into a number, by turning off auto-detect, as Thad
suggested. Once that conversion has been done, it's not necessarily reversable
(particularly for large numbers or long strings of digits).
If someone needs to control floating point number formatting for some reason,
please feel free to open an enhancement request with your use case, but for
this particular case, I'm going to close this issue.
Original comment by tfmorris
on 27 Nov 2010 at 2:18
Original issue reported on code.google.com by
wisnef...@gmail.com
on 20 Nov 2010 at 5:04