2014年10月18日 星期六

GoLang string to int

package main

import (
    "fmt"
    "strconv"
)

func main() {
    output, _ := strconv.Atoi("1234")

    fmt.Println(output)
}




References :
data - How do I use the strconv.Atoi() method in Go? - Stack Overflow

沒有留言:

張貼留言