For most rules in MOM, you can use regular expressions to match items....Problem is there isn't a reference for Regular Expressions.
In the MOM 2000 on-line help:
You can perform advanced text pattern matching using regular expressions. Regular expressions provide more flexibility than simple wildcards in defining rules or views. To match an exact regular expression character, precede the character with a backslash (\). The following table lists regular expression operators and their definitions.
The following table provides examples of regular expressions and example matches.
st.n
st[io]n
st[^io]n
^houston
ston$
dall|hart
dal(l|h)art
il?e$
il*e$
il+e$
ad{2}
(la.*){2,}
il{,1}e$
(a.*){2,3}
not ville