The regexp
in the Go's standard library is quite poor, so I need a more powerful engine, like regex in Python (pip install regex), supporting recursion, backref, look-ahead/behind, etc... .
I found: https://godoc.org/github.com/dlclark/regexp2 .NET compatible, which was quite fine; however, recursion is not working properly.
and several bindings to PCRE, for example: https://godoc.org/github.com/glenn-brown/golang-pkg-pcre/src/pkg/pcre
so, how can I use this binding on Win64?