该字符串包中包含HasPrefix和HasSuffix。
import "strings"startsWith := strings.HasPrefix("prefix", "pre") // trueendsWith := strings.HasSuffix("suffix", "fix") // trueplay.golang.org

该字符串包中包含HasPrefix和HasSuffix。
import "strings"startsWith := strings.HasPrefix("prefix", "pre") // trueendsWith := strings.HasSuffix("suffix", "fix") // trueplay.golang.org