Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h2>JavaScript Regular Expressions</h2>
<p>A global, case-insensitive search for the character span [a-s]:</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
let text = "I Scream For Ice Cream, is that OK?!";
let pattern = /[a-s]/gi;
let result = text.match(pattern);
document.getElementById("demo").innerHTML = result;
</script>
</body>
</html>