I want the negative character class to match a tag with a square bracket like this [square bracket]. The problem is that the character] ends the character class!
I tried
\[[^\]]+]
but when I start, I get a syntax error. (This is in the regex search and replace mechanism, which is slightly different from the standard fyi .NET engine).
just.another.programmer
source share