I was wondering how to make a regular expression for any character except *
and +
. I\'ve tried ([^*+])
and (\\[^*+])
but
In the XML Schema regex flavor, you must not add regex delimiters (i.e., the /
at either end of /^[^*+]+$/
). You also don't need to use anchors (i.e., the ^
at the beginning and $
at the end); all regex matches are automatically anchored at both ends. That line should read:
...meaning the whole element must consist of one or more of any characters except *
and +
.