golang中的strings.EqualFold

晨夢~思雨發表於2020-10-23

golang中的字串操作函式strings.EqualFold

package main

import (
        "fmt"
        "strings"

)

//golang字串操作
func main(){
        s := "Hello world hello world"
        str := "Hello"
        //var s = []string{"11","22","33"}

        //返回s的副本,並將副本中的old字串替換為new字串,替換次數為n次,
        //如果n為-1,則全部替換;如果 old 為空,則在副本的每個字元之間都插入一個new
        ret := strings.EqualFold(s,str)
        fmt.Println(ret) //  false
}

 

相關文章