As you can see I figured out how to search for all characters excepting for an excluded character by putting the character in prefixed by a caret (^) and surrounded by square brackets. (Thus the above search will match any non "=" character immediately followed by an occurrence of the "=" character.)
But I wanted to use some of the matched characters in the replace string and I don't know how to do that. I tried a couple of things but the regular expression syntax being used in the editor isn't one of the ones that I'm familiar with.
Is there documentation on this somewhere?


Comment