1.RegExp 对象有 3 个方法:test():检索字符串中的指定值。返回值是 true 或 false。

               exec() :检索字符串中的指定值。返回值是被找到的值。如果没有发现匹配,则返回 null

                                              compile():用于改变 RegExp。         既可以改变检索模式,也可以添加或删除第二个参数

2.

直接量语法

/pattern/attributes

创建 RegExp 对象的语法:

new RegExp(pattern, attributes);
posted on 2017-07-10 15:29  yyzyyx  阅读(122)  评论(0编辑  收藏  举报