在go語言中,可以利用strings套件的Replace()函數來取代字串,語法「strings.Replace(原始字串,要搜尋的值,替換值,替換次數)」;如果替換次數為負數,那麼表示將字串中所有的指定子字串全部替換成新值。
本教學操作環境:windows7系統、GO 1.18版本、Dell G3電腦。
在開發過程中,有時候我們需要將一個 字串 中特定的字串替換成新的字串的需求,在 Go 語言 中,將某個字串替換成新的字串的需求,我們可以透過strings.Replace() 函數 來實現。
strings.Replace()函數
#
func Replace(s, old, new string, n int) string
參數 | 描述 |
#s | |
old | |
new |
n
傳回值
#傳回替換後的字串。
說明
使用範例:
取代一次字串
package main import ( "fmt" "strings" ) func main() { //使用 strings.Replace() 函数,替换字符串 strHaiCoder := "hello你好hello" fmt.Println("StrReplace =", strings.Replace(strHaiCoder, "hello", "hi", 2)) }
取代字串多次
package main import ( "fmt" "strings" ) func main() { //使用 strings.Replace() 函数,替换字符串 strHaiCoder := "hello你好hello你好hello你好hello你好hello" fmt.Println("StrReplace =", strings.Replace(strHaiCoder, "hello", "hi", -1)) }## ##rrreee############【相關推薦:###Go影片教學###、###程式設計教學###】###
以上是go語言怎麼替換字串的詳細內容。更多資訊請關注PHP中文網其他相關文章!