只是好奇地发现:为什么 Go 编程语言中没有标准函数(如开始、结束等)作为标准库的一部分?
该字符串包中包含HasPrefix和HasSuffix。
import "strings" startsWith := strings.HasPrefix("prefix", "pre") // true endsWith := strings.HasSuffix("suffix", "fix") // true
play.golang.org