在 Go 中的字符串列表上拆分字符串

是否可以不仅在一个字符串上拆分,还可以在一段字符串上拆分?IE

strings.Split("Dogs and Cats are Great", "and"))

但不是使用一个字符串,而是使用一段字符串:

strings.Split("Dogs and Cats are Great", []string{"and", "are"}))


守着星空守着你
浏览 193回答 1
1回答

开心每一天1111

您可以使用正则表达式:http : //play.golang.org/p/vCRCv4rt7sre := regexp.MustCompile(`and|are`)fmt.Printf("%q\n", re.Split("Dogs and Cats are Great", -1))
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Go