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
+6.1k Linux/Unix : Commands that you need to be careful about
+10.1k Golang : Print how to use flag for your application example
+14.4k Golang : Find network of an IP address
+18.9k Golang : Display list of time zones with GMT
+10.4k Swift : Convert (cast) String to Integer
+3.6k Java : Get FX sentiment from website example
+11.1k Golang : Calculate Relative Strength Index(RSI) example
+9.3k Golang : How to get username from email address
+24.4k Golang : Change file read or write permission example
+14.4k Golang : How to determine if user agent is a mobile device example
+5.2k Javascript : Change page title to get viewer attention