Those are helpful examples, but that's not the same as the syntax definition.
For example, some of the things that are not present in that github page include:
documentation of "?" within the regular expressions (does it match any single character...if so, how does that differ in syntax from ".", or is the "?" only used in a sequence of "?!" to negate a match)
are there other predefined character classes, such as "\s" to match white space, "\S" to match non-whitespace, "\D" to match non-numeric characters
are regular expressions in MMEX case-sensitive or insensitive, and if case-sensitive, are there operators to make a regular expression insensitive
are there operators to match a sequence, for example {0..5} or [0-5] to match the numbers 0 through 5 (inclusive)
is there an operator to anchor the regular expression to the end of the string (typically "$")
do MMEX regular expressions distinguish between different forms of whitespace (space, tab, newline) within a string
is there an operator to specify the number of matches, for example a regular expression like \d{4-8}\.\d{2} to match numbers with 4 to 8 digits before the decimal point and exactly 2 digits after
how can regular expression operators be used a string literals within a regular expression...for example, to match the literal character "."