Regular Expressions: How to match all except one character
You can match the characters not within a range by complementing the set. This is indicated by including a “^” as the first character of the class; “^” elsewhere will simply match the “^” character. For example, [^,] will match any character except “,”.

(88)

