AdSense

網頁

2023/6/20

Golang 字串比較忽略大小寫 case insensitive string comparison

Go比要兩個字串若要忽略大小寫差異,即ABC和abc是相同的,可使用string.EqualFold


main.go

package main

import (
    "fmt"
    "strings"
)

func main() {
    fmt.Println(strings.EqualFold("abc", "ABC"))                 // true
    fmt.Println(strings.EqualFold("a01", "A01"))                 // true
    fmt.Println(strings.EqualFold("hello world", "Hello World")) // true
}


沒有留言:

AdSense