I'm looking for a regular expression pattern, that matches everything but one exact word.
For example, resolutions:
monitors/resolutions // Should not match
monitors/34          // Should match
monitors/foobar      // Should match
I know that you can exclude a list of single characters, but how do you exclude a complete word?
 
     
    