golang 字串修改方式

kenuo發表於2018-05-11
package main

import "fmt"

func main()  {
    s := "hello"
    c := []byte(s)  // 將字串 s 轉換為 []byte 型別
    c[0] = 'c'
    s2 := string(c)  // 再轉換回 string 型別
    fmt.Printf("%s", s2)
}

by JeffreyBool blog :point_right: link

相關文章