在这种方法中:func (re *Regexp) FindAllStringSubmatch(s string, n int) [][]string第二个参数做什么?我试过了:re, _ := regexp.Compile("a")rs := re.FindAllString("aaaaa, ", **1**) // 1 get one 'a', 2 get two 'a's, 3 get three 'a's ...for _,v := range rs { fmt.Println(v)}似乎第二个参数是关于它匹配多少次的。我对吗?有人可以肯定地给我答案吗?首选官方文档或一些链接。
1 回答
- 1 回答
- 0 关注
- 746 浏览
添加回答
举报
0/150
提交
取消