package main
import (
"regexp"
"fmt"
)
func main() {
var re = regexp.MustCompile(`(?m)^(?=.*\bj(oe\.)?smith@)(?=.*\ba(lly\.)?cat@)(?=.*\bb(ob\.)?builder@)(?=.*\bc(harleston\.)?chew@)(?!.*@(?!domain\.com\b))`)
var str = `=== MATCH ===
joe.smith@domain.com, acat@domain.com, bob.builder@domain.com, cchew@domain.com
bob.builder@domain.com, cchew@domain.com, joe.smith@domain.com, acat@domain.com
=== NO MATCH ===
joe.smith@domain.com, acat@domain.com, bob.builder@domain.com, cchew@domain.comm
joe.smith@doman.com, acat@domain.com, bob.builder@domain.com, cchew@domain.com
joe.smith@domain.com, acat@domain.com, bob.builderdomain.com, cchew@domain.com
joe.smith@domains.com, acat@domain.com, bob.builder@domain.com, cchew@domain.com
jjoe.smith@domain.com, acat@domain.com, bob.builder@domain.com, cchew@domain.com`
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/