Skip to content

strconv

官方文檔:strconv package - strconv - Go Packages

包 strconv 實現與基本數據類型的字符串表示形式之間的轉換

導入

go
import (
  "strconv"
)

下面將會以例子的形式演示如何使用。

字符串轉整型

go
func Atoi(s string) (int, error)
  • s - 要轉換的字符串
go
func TestAoti(t *testing.T) {
  ints, err := strconv.Atoi("456789")
  fmt.Println(ints, err)
}
=== RUN   TestAoti
456789 <nil>
--- PASS: TestAoti (0.00s)
PASS

整型轉字符串

go
func Itoa(i int) string
  • i - 要轉換的整型數字
go
func TestIota(t *testing.T) {
   str := strconv.Itoa(114)
   fmt.Println(str)
}
=== RUN   TestIota
114
--- PASS: TestIota (0.00s)
PASS

字符串轉布爾值

go
func ParseBool(str string) (bool, error)
  • s - 要轉換的字符串

夠轉換的字符串如下

"1", "t", "T", "true", "TRUE", "True" // true
"0", "f", "F", "false", "FALSE", "False" // false
go
func TestAtob(t *testing.T) {
   parseBool, err := strconv.ParseBool("1")
   fmt.Println(parseBool, err)

   b, err := strconv.ParseBool("true")
   fmt.Println(b, err)

   b2, err := strconv.ParseBool("FALSE")
   fmt.Println(b2, err)
}
=== RUN   TestAotb
true <nil>
true <nil>
false <nil>
--- PASS: TestAotb (0.00s)
PASS

布爾值轉字符串

go
func FormatBool(b bool) string
  • b - 布爾值
go
func TestBota(t *testing.T) {
   fmt.Println(strconv.FormatBool(true))
   fmt.Println(strconv.FormatBool(false))
}
=== RUN   TestBota
true
false
--- PASS: TestBota (0.00s)
PASS

轉換成 Go 字符串

兩者都會將字符串轉換為帶引號的 Go 字符串,區別在於後者會將非 ASCII 字符轉通過\u轉義。

go
func TestQuote(t *testing.T) {
  fmt.Println(strconv.Quote("hello 世界"))
  fmt.Println(strconv.QuoteToASCII("hello 世界"))
}
=== RUN   TestQuote
"hello 世界"
"hello \u4e16\u754c"
--- PASS: TestQuote (0.00s)
PASS

字符串轉浮點數

go
func ParseFloat(s string, bitSize int) (float64, error)
  • s - 要轉換的字符串
  • bitSize - 位數
go
func TestParseFloat(t *testing.T) {
   float, err := strconv.ParseFloat("1.145114", 64)
   fmt.Println(float, err)

   float, err = strconv.ParseFloat("2.3333333333333333333", 64)
   fmt.Println(float, err)
}
=== RUN   TestFloat
1.145114 <nil>
2.3333333333333335 <nil>
--- PASS: TestFloat (0.00s)
PASS

浮點數轉字符串

字符串在轉換浮點數時,官方給出了幾種格式方法,以便輸出不同的樣式。

// 'b' (-ddddp±ddd, 二進制指數),
// 'e' (-d.dddde±dd, 小寫e十進制指數),
// 'E' (-d.ddddE±dd, 大寫E的十進制指數),
// 'f' (-ddd.dddd, 沒有指數), // 沒有特殊需求一般都用這個
// 'g' (對於大指數采用'e'的格式, 小指數采用'f'的格式),
// 'G' (對於大指數采用'e'的格式, 小指數采用'f'的格式),
// 'x' (-0xd.ddddp±ddd, 十六進制分數和二進制指數),
// 'X' (-0Xd.ddddP±ddd, 十六進制分數和二進制指數).

轉換函數

go
func FormatFloat(f float64, fmt byte, prec, bitSize int) string
  • f - 指要轉換的浮點數
  • fmt - 指的是格式化類型
  • prec - 指的是精度,除了g/G的情況是表示最大有效位數,其他情況都表示的是保留小數到後幾位,
  • bitzise - 指的是位數

當然一般情況都是使用f直接轉換小數的格式最多。

go
func TestFormatFloat(t *testing.T) {
   f := 1315643.14159261234567891011
   fmt.Println(strconv.FormatFloat(f, 'f', 6, 64))
   fmt.Println(strconv.FormatFloat(f, 'b', 6, 64))
   fmt.Println(strconv.FormatFloat(f, 'e', 6, 64))
   fmt.Println(strconv.FormatFloat(f, 'x', 6, 64))
   fmt.Println(strconv.FormatFloat(f, 'g', 6, 64))
   fmt.Println(strconv.FormatFloat(1.111, 'g', 6, 64))
}
=== RUN   TestFormatFloat
1315643.141593
5650644266346967p-32
1.315643e+06
0x1.4133b2p+20
1.31564e+06
1.111
--- PASS: TestFormatFloat (0.00s)
PASS

字符串轉復數

go
func ParseComplex(s string, bitSize int) (complex128, error)
  • s - 要轉換的字符串
  • bitSize - 位數
go
func TestParseComplex(t *testing.T) {
   fmt.Println(strconv.ParseComplex("1+2i", 128))
   fmt.Println(strconv.ParseComplex("1+2j", 128))
}
=== RUN   TestParseComplex
(1+2i) <nil>
(0+0i) strconv.ParseComplex: parsing "1+2j": invalid syntax
--- PASS: TestParseComplex (0.00s)
PASS

復數轉字符串

go
func FormatComplex(c complex128, fmt byte, prec, bitSize int) string

c- 復數

fmt - 格式化類型,參考浮點數格式化類型

prec - 參考浮點數精度

bitsize - 位數

go
func TestFormatComplex(t *testing.T) {
   fmt.Println(strconv.FormatComplex(complex(1.1, 12), 'f', 2, 128))
   fmt.Println(strconv.FormatComplex(complex(5.6, 2.8), 'b', 2, 128))
   fmt.Println(strconv.FormatComplex(complex(18.88999, 89.7), 'g', 2, 128))
}
=== RUN   TestFormatComplex
(1.10+12.00i)
(6305039478318694p-50+6305039478318694p-51i)
(19+90i)
--- PASS: TestFormatComplex (0.00s)
PASS

字符串追加數據

在其他語言比如 java 中"1"+1的結果是"11",java 會自動完成類型轉換,而在 Go 語言中這樣的操作是不被允許的,因為兩者的數據類型不同。所以需要用到strconv下的 Append 函數 ,具體的參數與上面對於的數據轉換函數一致。

go
func TestAppend(t *testing.T) {
   bytes := []byte("這裡有一些數據:")
   bytes = strconv.AppendInt(bytes, 10, 10)
   bytes = strconv.AppendFloat(bytes, 1.2222, 'f', 2, 64)
   bytes = strconv.AppendBool(bytes, false)
   fmt.Println(string(bytes))
}
=== RUN   TestAppend
這裡有一些數據:101.22false
--- PASS: TestAppend (0.00s)
PASS

Golang學習網由www.golangdev.cn整理維護