2014年10月18日 星期六

GoLang hex IP to string

package main

import (
        "fmt"
        "encoding/hex"
)

func main(){
    a, _ := hex.DecodeString("0101A8C0")

    fmt.Printf("%v.%v.%v.%v", a[3], a[2], a[1], a[0])
}




References :
convert hex ip addres to net.IP - Google Groups

沒有留言:

張貼留言