package main
import (
"regexp"
"fmt"
)
func main() {
var re = regexp.MustCompile(`(?m)(?(DEFINE)(?'uc'(?=\S*?[A-Z])))
(?(DEFINE)(?'lc'(?=\S*?[a-z])))
(?(DEFINE)(?'num'(?=\S*?[0-9])))
(?(DEFINE)(?'pun'(?=\S*?[][(){}~!@$%^&*_+=\\:;"'<>,.?\/-])))
(password
|(
(?P>lc)(?P>num)(?P>pun)
|(?P>uc)(?P>num)(?P>pun)
|(?P>uc)(?P>lc)(?P>pun)
|(?P>uc)(?P>lc)(?P>num)
)\S+ # change the "+" to "{4,}" to require a min-length
)`)
var str = `Should match:
password
a1.
Aa1
Aa.
Aa1.
Aabc123
Should not match:
abc123
AABB
A111
BBBbbb
192.168.1.0`
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/