JavaScript
JavaScript 正则表达式
字符串中含有 "e",所以该实例输出为
源代码:
点击运行 »
<script> var patt1 = new RegExp("e"); document.write(patt1.test("The best things in life are free")); </script>
运行结果:
点击运行 »