Answers for "case insensitive regex example"

3

regex string case insensitive

(?i)(STRING_TO_CHECK)
Posted by: Guest on March-27-2020
-1

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
Posted by: Guest on April-15-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language