The following regular expression matches the character a:
"a"
The following regular expression matches all characters except a:
"[^a]"
The following regular expression matches a ton of characters:
"."
How do I match everything that is not matched by "."
? I can't use the same technique as above:
"[^.]"
because inside the brackets, the .
changes meaning and only stands for the character .
itself :(