1. 程式人生 > >golang strconv包部分函式使用

golang strconv包部分函式使用

import (
	"fmt"
	"strconv"
)

func main() {
	//append追加
	slice := make([]byte, 0, 1024)
	slice = strconv.AppendBool(slice, true)
	slice = strconv.AppendInt(slice, 123, 10)
	slice = strconv.AppendQuote(slice, "ass")
	fmt.Println(string(slice))

	//format轉換
	fmt.Println(strconv.FormatBool(false))
	fmt.Println(strconv.FormatFloat(3.22, 'f', 1, 64))
	//整數轉字串
	fmt.Println(strconv.Itoa(666))

	//Parse轉換
	if flag, err := strconv.ParseBool("true"); err == nil {
		fmt.Println(flag)
	} else {
		fmt.Println(err)
	}

	//字串轉整數
	fmt.Println(strconv.Atoi("1"))
}