JavaScript
JavaScript RegExp 对象
由于该字符串中存在字母 "e",以上代码的输出将是
源代码:
点击运行 »
<script> var patt1 = new RegExp("e"); document.write(patt1.exec("The best things in life are free")); </script>
运行结果:
点击运行 »