1
0
mirror of https://github.com/golang/go synced 2024-11-12 06:40:22 -07:00

exp/norm: reverting to using strings.Repeat, as it doesn't look like exp/regexp

is going to support returning multiple matches for a single repeated group.

R=r, rsc, mpvl
CC=golang-dev
https://golang.org/cl/5014045
This commit is contained in:
Marcel van Lohuizen 2011-09-16 11:28:53 +02:00
parent 1913fdab98
commit a083fd524a

View File

@ -115,8 +115,7 @@ func (t Test) Name() string {
}
var partRe = regexp.MustCompile(`@Part(\d) # (.*)\n`) // TODO: using $ iso \n does not work
// TODO: the following regexp does not work: `^(?:([\dA-F ]+);){5} # (.*)\n`
var testRe = regexp.MustCompile(`^(?:([\dA-F ]+);)(?:([\dA-F ]+);)(?:([\dA-F ]+);)(?:([\dA-F ]+);)(?:([\dA-F ]+);) # (.*)\n`)
var testRe = regexp.MustCompile(`^` + strings.Repeat(`([\dA-F ]+);`, 5) + ` # (.*)\n`)
var counter int