Sign in to follow this
Followers
0

StringFormat: number thousand separator
By
FireFox, in AutoIt General Help and Support
-
Similar Content
-
By Rskm
hi, i have the following function to get a number in scientific format.
my input is 12360
what i get using the below function = 1.236E+004
What i require is 1.236E4
how do i achieve this. i do not require the '+00'prefixing '4 or whatever' in my o/p.
Func _FXTY($inumber)
return stringformat("%01.3E",$inumber)
Endfunc
-