Does Go's fmt.Printf
support outputting a number with the thousands comma?
fmt.Printf("%d", 1000)
outputs 1000
, what format can I specify to output 1,000
instead?
The docs don't seem to mention commas, and I couldn't immediately see anything in the source.
The package humanize can do the magic! Refer the documentation of this package here. To use this package, install it first by using a tool like Git SCM. If you are using Git Bash, open the shell window and type:
Once this is done, you can use the following solution code (Say, main.go):
There are other variations to
Commaf
likeBigComma, Comma, BigCommaf
etc. which depends on the data type of your input.So, on running this program using the command:
You will see an output such as this:
None of the fmt print verbs support thousands separators.
Here is a function that takes an integer and grouping separator and returns a string delimited with the specified separator. I have tried to optimize for efficiency, no string concatenation or mod/division in the tight loop. From my profiling it is more than twice as fast as the humanize.Commas implementation (~680ns vs 1642ns) on my Mac. I am new to Go, would love to see faster implementations!
Usage: s := NumberToString(n int, sep rune)
Examples
Illustrates using different separator (',' vs ' '), verified with int value range.
s:= NumberToString(12345678, ',')
=> "12,345,678"
s:= NumberToString(12345678, ' ')
=> "12 345 678"
s: = NumberToString(-9223372036854775807, ',')
=> "-9,223,372,036,854,775,807"
Function Implementation
Use https://github.com/dustin/go-humanize .. it has a bunch of helpers to deal with those things. In addition to bytes as MiB, MB, and other goodies.
The
fmt
package does not support grouping decimals.We have to implement one ourselves (or use an existing one).
The Code
Here is a compact and really efficient solution (see explanation after):
Try it on the Go Playground.
Testing it:
Output:
Explanation:
Basically what the
Format()
function does is it formats the number without grouping, then creates a big enough other slice and copies the digits of the number inserting comma (','
) grouping symbol when necessary (after groups of digits of 3 if there are more digits) meanwhile taking care of the negative sign to be preserved.The length of the output:
It is basically the length of the input plus the number of grouping signs to be inserted. The number of grouping signs is:
Since the input string is a number which may only contain digits (
'0..9'
) and optionally a negative sign ('-'
), the characters are simply mapped to bytes in a 1-to-1 fashion in UTF-8 encoding (this is how Go stores strings in memory). So we can simply work with bytes instead of runes. So the number of digits is the input string length, optionally minus1
for the sign digit'-'
.If there is a sign digit, it will be in
in[0]
. The numerical value of'-'
is45
, while the numerical value of digit characters'0'..'9'
are48..57
. So the sign character is less than the possible digits. So if we divide the first character (there is always at least 1 character) by'0'
, we get0
if it is a negative sign and1
if it is a digit (integer division).So the number of digits in the input string is:
And therefore the number of grouping signs:
Therefore the output slice will be:
Handling the negative sign character:
If the number is negative, we simply slice the input string to exclude it from processing and we manually copy the sign bit to the output:
And therefore the rest of the function does not need to know/care about the optional negative sign character.
The rest of the function is a
for
loop which just copies the bytes (digits) of the number from the input string to the output, inserting a grouping sign (','
) after every group of 3 digits if there are more digits. The loop goes downward so it's easier to track the groups of 3 digits. Once done (no more digits), the output byte slice is returned as astring
.Variations
Handling negative with recursion
If you're less concerned with efficiency and more about readability, you might like this version:
Basically this handles negative numbers with a recursive call: if the number is negative, calls itself (recursive) with the absolute (positive) value and prepends the result with a
"-"
string.With
append()
slicesHere's another version using the builtin
append()
function and slice operations. Somewhat easier to understand but not so good performance-wise:The first
if
statement takes care of the first optional, "incomplete" group which is less than 3 digits if exists, and the subsequentfor
loop handles the rest, copying 3 digits in each iteration and appending a comma (','
) grouping sign if there are more digits.