regex javascript case insensitive code example
Example 1: regex string case insensitive
(?i)(STRING_TO_CHECK)
Example 2: javascript case insensitive regex
// It's the 'i' flag at the end of the expression.
/hello world/.test('Hello World'); // False
/hello world/i.test('Hello World'); // True