在go语言中字符串比较示例代码
鉴于大多数后端服务都是处理文本数据的。一定会有需要比较字符串的时候。
那么如何在Golang中比较字符串呢?
经过深入研究....,
最终发现strings.EqualFold函数可以用来比较字符串(不区分大小写)。
代码示例:
package main
import (
"fmt"
"strings"
)
func main() {
string1 := "Hello"
string2 := "World"
string3 := "HELLo"
// true
bool1 := strings.EqualFold(string1, string1)
// false
bool2 := strings.EqualFold(string1, string2)
// true
bool3 := strings.EqualFold(string1, string3)
fmt.Printf("%s 等于 %s : %v \n", string1, string1, bool1)
fmt.Printf("%s 等于 %s : %v \n", string1, string2, bool2)
//EqualFold的比较对大小写是敏感的
fmt.Printf("%s 等于 %s : %v \n", string1, string3, bool3)
}
输出:
Hello 等于 Hello : true
Hello 等于 World : false
Hello 等于 HELLo : true
相关资料链接:
http://golang.org/pkg/strings/#EqualFold
相关文章