代码示例:(标识:eg_js_regexp_n_1)
<!DOCTYPE html>
<html>
<body>

<p>单击按钮可对字符串中的至少一个“o”进行全局搜索。</p>

<button onclick="myFunction()">试一试</button>

<p id="demo"></p>

<script>
function myFunction() {
  var str = "Hellooo World! Hello (www.sou-xun.com)!"; 
  var patt1 = /o+/g;
  var result = str.match(patt1);
  document.getElementById("demo").innerHTML = result;
}
</script>

</body>
</html>
运行结果: