^((?!word).)*$ // Test /^((?!word).)*$/gi.test('Should not contain word') // Returns false /^((?!word).)*$/gi.test('John Doe') // Returns true