运行 ❯
建立您
自己的
网站
×
改变方向
保存代码
改变主题,亮/暗
前往 Spaces
<!DOCTYPE html> <html> <body> <h2>JavaScript Regular Expressions</h2> <p>A global search for a "1", followed by zero or more "0" characters:</p> <p id="demo"></p> <script> let text = "1, 100 or 1000?"; let pattern = /10*/g; let result = text.match(pattern); document.getElementById("demo").innerHTML = result; </script> </body> </html>