Does there exist a regular expression that matches no strings? If so, what is it?
To be precise, I\'m looking for a regular expression r such that the follo
r
The following regex should match no strings. It will match any single character which is neither a whitespace character, nor a nonwhitespace character.
[^\S\s]