This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.
Smartphone icons created by Freepik - Flaticon
ES2020 intoduced the string method matchAll().
let text = "I love cats. Cats are very easy to love. Cats are very popular." const iterator = text.matchAll(/Cats/gi); document.getElementById("demo").innerHTML = Array.from(iterator);
To search case insensitive, the insensitive flag (i) must be set: