Avoid exponential notation of large numbers while importing from HTML with Golang via C++
Contents
[
Hide
]
Sometimes your HTML contains numbers like 1234567890123456 which are longer than 15 digits, and when you import your HTML into an Excel file, these numbers are converted to exponential notation such as 1.23457E+15. If you want your number to be imported as it is and not converted to exponential notation, please use the HTMLLoadOptions.GetKeepPrecision() property and set it to true while loading your HTML.
The following sample code explains the usage of the HTMLLoadOptions.GetKeepPrecision() property. The API will import the number as it is without converting it to exponential notation.