0
すべての一致を得るためにregexp.FindAll()を使用します。私はn
のパラメータを理解しておらず、office referenceには説明がありません。どのようにパラメータを設定できますか? https://golang.org/pkg/regexp/からgo:regexpのnパラメータは何ですか:FindAll()
// 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 {}