package main
import (
"regexp"
"fmt"
)
func main() {
var re = regexp.MustCompile(`(?m)^(?:[^{\n]|{(?!{)|{{2}(?:dog|cat)}{2})+$`)
var str = `I own a {{dog}} and {{cat}} but not fish
I own a fish
I own a {{cow}}
I own a {{dog}} and a {{cow}}
I own a {{cat}} hah
I {own} a {{dog}}
I {own} a {{cat}} and {cow}
I own a {cow}
`
for i, match := range re.FindAllString(str, -1) {
fmt.Println(match, "found at index", i)
}
}
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Golang, please visit: https://golang.org/pkg/regexp/