Golang : Convert octal value to string to deal with leading zero problem
Problem :
You have some integer variables or input data that starts with zero and they are causing some funky bugs when displayed on screen in your program. This is known as the leading zero problem and plagued other programming languages as well. Not unique to Golang alone and the developers behind Golang won't fix this issue.
So how to fix this leading zero problem ?
Solution :
At this moment, reflect package still unable to detect if an integer variable is octal or strings.HasPrefix()
can be used to check the integer starts with zero.( only works on string).
Therefore, to be safe, always convert the integer variables to string before displaying the values.
package main
import (
"fmt"
"reflect"
"strconv"
)
func main() {
var octalInt = 0012
// don't use this method as the leading zero will disappear!
zip := strconv.FormatInt(int64(octalInt), 8) // base 8 for Octal
fmt.Println("Wrong! Don't use this method because of : ")
fmt.Println("Missing zero : ", zip)
fmt.Printf("Type : %v \n", reflect.TypeOf(zip))
fmt.Println("=========================================")
// calculate the size of the octal - the wrong way!
t := reflect.TypeOf(octalInt)
fmt.Println("Type : ", t)
// play.golang.org will return 4
// go run will return 8 ... so not to be trusted for now
fmt.Println("Size : ", t.Size())
fmt.Println("However, we have to count by hand on the actual size of the octalInt")
str := fmt.Sprintf("00%o", octalInt) //pad zero up to the length of 4, o is for expecting octal value
// ** NOTE : Have to hardcode 4 because there is no way I can programmatically insert octalInt's length into
// fmt.Sprintf()
fmt.Println("Converted from integer(octal) to string : ", str)
fmt.Printf("Type : %v \n", reflect.TypeOf(str))
}
Output :
Wrong! Don't use this method because of :
Missing zero : 12
Type : string
=========================================
Type : int
Size : 8
However, we have to count by hand on the actual size of the octalInt
Converted from integer(octal) to string : 0012
Type : string
See also : Golang : Dealing with postal or zip code example
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
+8.8k Golang : Gonum standard normal random numbers example
+6.9k Golang : Use modern ciphers only in secure connection
+5.3k PHP : Convert CSV to JSON with YQL example
+22.2k Golang : Set and Get HTTP request headers example
+5.1k Swift : Convert string array to array example
+9.2k Golang : Convert(cast) string to int64
+19.2k Golang : Example for DSA(Digital Signature Algorithm) package functions
+12.2k Golang : Forwarding a local port to a remote server example
+5.1k Unix/Linux : How to archive and compress entire directory ?
+5.3k Golang : Configure crontab to poll every two minutes 8am to 6pm Monday to Friday
+12.5k Golang : http.Get example