I want to match all characters in a string until I hit one of the following substrings:
'='
'+%'
'-%'
I had no problem negating a set of single characters (i.e. [^=+-]), and I can positively match the strings with
(=|\+%|-%)
but I can't seem to figure out the syntax for negating the set. Any suggestions?