JavaScript RegExp i Modifier
Example
Do a case-insensitive search for "w3schools" in a string:
var str = "Visit W3Schools";
var patt1 = /w3schools/i;
Try it Yourself »
Definition and Usage
The i modifier is used to perform case-insensitive matching.
Tip: Use the ignoreCase property to check whether or not the "i" modifier is set.
Browser Support
Expression | |||||
---|---|---|---|---|---|
i | Yes | Yes | Yes | Yes | Yes |
Syntax
new RegExp("regexp", "i")
or simply:
/regexp/i
❮ JavaScript RegExp Object