小编典典

在Go中没有开头,结尾功能?

go

只是好奇地发现:为什么Go编程语言的标准库中没有诸如startswith,endswith等标准函数?


阅读 248

收藏
2020-07-02

共1个答案

小编典典

字符串包中包含HasPrefixHasSuffix

import "strings"

startsWith := strings.HasPrefix("prefix", "pre") // true
endsWith := strings.HasSuffix("suffix", "fix") // true

play.golang.org

2020-07-02