Golang : Print leading(padding) zero or spaces in fmt.Printf?
Problem :
You want to include leading zero or spaces in front(prefix) of integer when printing out with fmt.Println()
or fmt.Printf()
functions. How to do that?
Solution :
From https://golang.org/pkg/fmt/ - Other flags:
+
always print a sign for numeric values; guarantee ASCII-only output for %q (%+q)
-
pad with spaces on the right rather than the left (left-justify the field)
#
alternate format: add leading 0 for octal (%#o), 0x for hex (%#x);0X for hex (%#X); suppress 0x for %p (%#p); for %q, print a raw (backquoted) string if strconv.CanBackquote returns true; write e.g. U+0078 'x' if the character is printable for %U (%#U).
' '
(space) leave a space for elided sign in numbers (% d); put spaces between bytes printing strings or slices in hex (% x, % X)
0
pad with leading zeros rather than spaces; for numbers, this moves the padding after the sign
Code example :
package main
import "fmt"
func main() {
// you want to display 000108 (length = 6)
// pad zero to total length of 6
// d
fmt.Printf("Leading or padded with zero : |%06d|\n", 108)
// pad spaces in front(prefix)
fmt.Printf("Leading or padded with space : |%6d|\n", 108)
}
Output :
Leading or padded with zero : |000108|
Leading or padded with space : | 108|
References :
http://stackoverflow.com/questions/153890/printing-leading-0s-in-c
See also : Golang : Convert octal value to string to deal with leading zero problem
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
+16.2k Golang : How to extract links from web page ?
+18.7k Golang : Implement getters and setters
+7.1k Golang : Get environment variable
+23.1k Golang : Randomly pick an item from a slice/array example
+12.7k Swift : Convert (cast) Int or int32 value to CGFloat
+5.8k Golang : Fix opencv.LoadHaarClassifierCascade The node does not represent a user object error
+9.3k Golang : Timeout example
+9.6k Golang : Sort and reverse sort a slice of floats
+22.6k Golang : Set and Get HTTP request headers example
+17.2k Golang : When to use init() function?
+16.5k Golang : Generate QR codes for Google Authenticator App and fix "Cannot interpret QR code" error
+10.8k Golang : Natural string sorting example