I'm having troubles to create a regular expression who checks if a file has the extention .TMP so the pattern should accept any string who's not equal to (a-z 0-9 or event dots).TMP
To be clear: the matcher should only be succesfull when the file doesn't have the TMP extention.
I've allready found that I need to use (?!expression) for the "not"...
(?!.*TMP]) // is wrong ;-)