运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 Spaces
<!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> </html>