Possible Duplicate:
What regular expression can never match?
I would like to write regular expression, which will match nothing, that is corresponding to empty language. Empty language is regular, so there should be a way to write regular expression for it.
I'm particularly interested in how to write it in Java using API provided by java.util.regex package (if possible), but any other language/API will be fine. I'm curious, if something like that is possible.
To clarify it once more, I want to find regular expression EMPTY_LANG_REGEX such that
Pattern.compile(EMPTY_LANG_REGEX).matcher(s).matches()
will yield false for every string s.
I know something like a++a works, but that is kind of hack and has performance issues.
Thanks for answers.