This question already has an answer here:
I try to find all in one golang regexp rules/specification/accepted syntax. However as it turned out - it's not simple task. There is some resource I've found:
- https://code.google.com/p/re2/wiki/Syntax (link from regexp package)
- https://regex-golang.appspot.com/assets/html/index.html
- https://github.com/StefanSchroeder/Golang-Regex-Tutorial/blob/master/01-chapter1.markdown
There first one it is almost what I need, but there is so many complicated moments where I just doesn't understand what's going on (no legenda and no explanations - only for those who already know something). See some examples below:
\d Perl character class #what does it have with Perl?
[[:name:]] named ASCII class inside character class (≡ [:name:])
Could anybody help me?
</div>