Golang: Pad right or print ending(suffix) zero or spaces in fmt.Printf example
From the previous tutorial on how to pad left or print leading zeros with fmt.Printf() function, a reader asked how to pad zeros on right side or print ending zeros to a number.
From https://golang.org/pkg/fmt/ - Other flags:
We can see that there is an option to do just that.... for spaces
-
pad withspaces
on the right rather than the left (left-justify the field)
Therefore, to pad right or print ending space
, all you need to do is to add the -
sign.
However, the trouble is that many people are confused why the -
flag does not pad zero at the right side. If you read between the line, the -
is working as advertise because it only pads spaces
, nothing else. To pad zero(or any other character) to right side, we will need to create our function to do that. See code example below.
Here we go!
package main
import (
"fmt"
"strings"
)
func padRightSide(str string, item string, count int) string {
return str + strings.Repeat(item, count)
}
func main() {
// you want to display 000108 (length = 6)
// pad zero to total length of 6
// d
fmt.Printf("Leading or pad left with zero : |d|\n", 108)
// pad spaces in front(prefix)
fmt.Printf("Leading or pad left with space : |%6d|\n", 108)
// the flag - here WILL NOT work because it only move spaces to the right
// YES only spaces, nothing else...not even zero
fmt.Printf("Ending or pad RIGHT with zero(will NOT work) : |%-06d|\n", 108)
// to pad zero or anything else, we will use the padRightSide function
fmt.Printf("Ending or pad RIGHT with zero : |%v|\n", padRightSide("108", "0", 3))
// pad spaces at end(suffix)
// this will work.
fmt.Printf("Ending or pad RIGHT with space : |%-6d|\n", 108)
}
Output:
Leading or pad left with zero : |000108|
Leading or pad left with space : | 108|
Ending or pad RIGHT with zero(will NOT work) : |108 |
Ending or pad RIGHT with zero : |108000|
Ending or pad RIGHT with space : |108 |
Hope this helps!
References:
By Adam Ng
IF you gain some knowledge or the information here solved your programming problem. Please consider donating to the less fortunate or some charities that you like. Apart from donation, planting trees, volunteering or reducing your carbon footprint will be great too.
Advertisement
Tutorials
+19.2k Golang : Delete item from slice based on index/key position
+25.7k Golang : How to write CSV data to file
+51.9k Golang : How to get time in milliseconds?
+7.6k Golang : Set horizontal, vertical scroll bars policies and disable interaction on Qt image
+7.4k Golang : Fixing Gorilla mux http.FileServer() 404 problem
+30.4k Golang : How to redirect to new page with net/http?
+5.3k Golang : Generate Interleaved 2 inch by 5 inch barcode
+5k Nginx and PageSpeed build from source CentOS example
+6k Golang : Extract unicode string from another unicode string example
+14.8k Golang : Get URI segments by number and assign as variable example
+15.2k Golang : How to add color to string?
+13.6k Golang : Get user input until a command or receive a word to stop