语法:/正则表达式主体/修饰符(可选) <script> var str = "hello world"; var reg = /l/g; console.log(str.replace(reg,"$")); </script>