英文:
go: What is the n parameter in regexp:FindAll()
问题
我使用regexp.FindAll()来获取所有匹配项。我不理解参数n
的含义,在官方参考文档中也没有解释。我该如何设置这个参数。
// FindAll是Find的“全部”版本;它返回一个切片,其中包含表达式的所有连续匹配项,如包注释中的“全部”描述所定义。
// 返回值为nil表示没有匹配项。
func (re *Regexp) FindAll(b []byte, n int) [][]byte {}
英文:
I use regexp.FindAll() to get all the matches. I don't understand the parameter of n
, and in the office reference, there is no explanation. How can I set the parameter.
// FindAll is the 'All' version of Find; it returns a slice of all successive
// matches of the expression, as defined by the 'All' description in the
// package comment.
// A return value of nil indicates no match.
func (re *Regexp) FindAll(b []byte, n int) [][]byte {}
答案1
得分: 5
从 https://golang.org/pkg/regexp/:
> Find(All)?(String)?(Submatch)?(Index)?
>
> 如果出现了 'All',该函数将匹配整个表达式的连续非重叠匹配项。忽略与前一个匹配相邻的空匹配项。返回值是一个切片,包含对应非 'All' 函数的连续返回值。这些函数接受一个额外的整数参数 n;如果 n >= 0,则函数最多返回 n 个匹配项/子匹配项。
英文:
From https://golang.org/pkg/regexp/:
> Find(All)?(String)?(Submatch)?(Index)?
>
> If 'All' is present, the routine matches successive non-overlapping
> matches of the entire expression. Empty matches abutting a preceding
> match are ignored. The return value is a slice containing the
> successive return values of the corresponding non-'All' routine. These
> routines take an extra integer argument, n; if n >= 0, the function
> returns at most n matches/submatches.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论