PHP » GoLang |
login |
register |
about
|
bindecbindec[code]
func Bindec(str string) (string, error) {
i, err := strconv.ParseInt(str, 2, 0)
if err != nil {
return "", err
}
return strconv.FormatInt(i, 10), nil
}
[/code]
|