Avoiding scientific notation when casting real numbers ToString

  • Thread starter Thread starter Dennis Myrén
  • Start date Start date
D

Dennis Myrén

Hi.
Is there anyway to ensure that a real number always will be casted to it's
exact string,
and never use a scientific notation?
I always want the format eg:
3.435845793478523458
 
hi Dennis,
Is there anyway to ensure that a real number always will be casted to it's
exact string,
and never use a scientific notation?
I always want the format eg:
3.435845793478523458

look for "Custom Numeric Format Strings" in the help. You'll want a format
string like this: #.#########

Rob
 
Thank you for helping out.
Rob Agar said:
hi Dennis,


look for "Custom Numeric Format Strings" in the help. You'll want a format
string like this: #.#########

Rob
 
Back
Top