是否可以不仅在一个字符串上拆分,还可以在一段字符串上拆分?IEstrings.Split("Dogs and Cats are Great", "and"))但不是使用一个字符串,而是使用一段字符串:strings.Split("Dogs and Cats are Great", []string{"and", "are"}))
1 回答
开心每一天1111
TA贡献1836条经验 获得超13个赞
您可以使用正则表达式:http : //play.golang.org/p/vCRCv4rt7s
re := regexp.MustCompile(`and|are`)
fmt.Printf("%q\n", re.Split("Dogs and Cats are Great", -1))
- 1 回答
- 0 关注
- 192 浏览
添加回答
举报
0/150
提交
取消