I have a string 'This is the monday morning madness', how do i add a wild card to the regular expression at the beginning of a string to match any string that doesn't have 'monday morning'.
My regular expression example: ^(?!monday morning|Monday Morning).*
The regular expression works fine when the string is 'monday morning madness', but doesn't work on 'This is the monday morning madness'.