Basically, just copy the two INI files Arthmoor suggested, and use them.

Buf if you really want a glossary:
"." = Matches anything but a new line (\n)"*" = Means 0 or more"+" = Means 1 or more"?" = Means 0 or 1, or makes the previous "non-greedy" (*?, +?, or ??)"^" = Means the start of a string"$" = Means the end of a string"[]" = Is a set of chars"|" = Means OR"\" = Escapes special chars
And there's also craziness like
{m}{m, n}{m, n}?(...)(?...)(?:...)(?=...) lookahead assertion(?!...) negative lookahead(?<=...) lookbehind(?
And then there are about 30 bajillion special characters.
Basically, I think the point is, "Leave regex alone, it doesn't like to be messed with!" It's a curmudgeon.
Right on. I will just leave them as-is.