ToString

© 2011,2014 John Abbott
GNU Free Documentation License, Version 1.2



CoCoALib Documentation Index

Examples

User documentation

These functions are to help visualize integer and rational numbers in a more comprehensible format (as a decimal string). The SigFig argument is optional; its default value is 5.

Maintainer documentation

The function ScientificStr gives the clearest guarantees about the format used, but also produces the least humanly readable result. It uses MantissaAndExponent10 to do the conversion.

The function FloatStr is supposed to be the best general choice. It passes its args to ScientificStr in two situations: if the number is so large that padding would be needed before the decimal point; if the number is so small that the ScientificStr format would be shorter (i.e. if the exponent is less than -8).

The function DecimalStr is Anna's preferred choice. It uses ToString to convert to decimal.

Bugs, shortcomings and other ideas

These functions cannot be applied directly to a machine integer; to call them you have to convert explicitly into a BigInt (or BigRat).

The switch-over in FloatStr to scientific notation for "large" numbers is not ideal; in C the "g" format chooses the shorter between float and scientific formats. Is it worth the doing the same here?

Anna says an older version of DecimalStr would suppress trailing zeroes if the result is exact (e.g. DecimalStr(5/4,9) would produce 1.25 rather than 1.250000000. Is this a good idea?

Main changes

2014