I need a regex which match everything expect for several words.
The input-string is something like:
This Is A <Test$gt;
It should match
This Is A Test
So I want to have everything around , < and >
I've tried something like [^ ] to ignore all appearances of but this excludes every character.