Can you help me to build a regex that match everything but the characters matched by [a-zA-Z][\w:.-]?
For example: in the test string abc)def the ) should be a matched char for the final regex.
I tried using several variations of the regex (?!fox\b)\b\w+ (see) without any result.
For easy the test you can use this service.
Sorry, it seems that I overlook the issue.
The answer is:
Thanks!