170

Go プログラミング言語の標準ライブラリの一部として、startswith、endswith などの標準関数がないのはなぜですか?

4

2 に答える 2

295

文字列パッケージにはHasPrefixHasSuffixが含まれています。

import "strings"

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

play.golang.org

于 2012-11-06T03:49:43.180 に答える