字串處理

字串在我們平常的 Web 開發中經常用到,包括使用者的輸入,資料庫讀取的資料等,我們經常需要對字串進行分割、連線、轉換等操作,本小節將透過 Go 標準函式庫中的 strings 和 strconv 兩個套件中的函式來講解如何進行有效快速的操作。

字串操作

下面這些函式來自於 strings 套件,這裡介紹一些我平常經常用到的函式,更詳細的請參考官方的文件。

  • func Contains(s, substr string) bool

    字串 s 中是否包含 substr,回傳 bool 值

fmt.Println(strings.Contains("seafood", "foo"))
fmt.Println(strings.Contains("seafood", "bar"))
fmt.Println(strings.Contains("seafood", ""))
fmt.Println(strings.Contains("", ""))
//Output:
//true
//false
//true
//true
  • func Join(a []string, sep string) string

    字串連結,把 slice a 透過 sep 連結起來

s := []string{"foo", "bar", "baz"}
fmt.Println(strings.Join(s, ", "))
//Output:foo, bar, baz
  • func Index(s, sep string) int

    在字串 s 中查詢 sep 所在的位置,回傳位置值,找不到回傳-1

  • func Repeat(s string, count int) string

    重複 s 字串 count 次,最後回傳重複的字串

  • func Replace(s, old, new string, n int) string

    在 s 字串中,把 old 字串替換為 new 字串,n 表示替換的次數,小於 0 表示全部替換

  • func Split(s, sep string) []string

    把 s 字串按照 sep 分割,回傳 slice

  • func Trim(s string, cutset string) string

    在 s 字串的頭部和尾部去除 cutset 指定的字串

  • func Fields(s string) []string

    去除 s 字串的空格符,並且按照空格分割回傳 slice

字串轉換

字串轉化的函式在 strconv 中,如下也只是列出一些常用的:

  • Append 系列函式將整數等轉換為字串後,新增到現有的位元組陣列中。

  • Format 系列函式把其他型別的轉換為字串

  • Parse 系列函式把字串轉換為其他型別

Last updated

Was this helpful?