Get your own website Result Size: 625 x 565
x
 
<!DOCTYPE html>
<html>
<body>
<h1>JavaScript Strings</h1>
<h2>The match() Method</h2>
<p>match() searches for a match against a regular expression.</p>
<p>Do a global search for "ain":</p>
<p id="demo"></p>
<script>
let text = "The rain in SPAIN stays mainly in the plain";
let result = text.match(/ain/g);
 
document.getElementById("demo").innerHTML = result;
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_match_regexp by HTTrack Website Copier/3.x [XR&CO'2014], Wed, 21 Dec 2022 17:39:26 GMT -->
</html>