1.RegExp 对象有 3 个方法:test():检索字符串中的指定值。返回值是 true 或 false。
exec() :检索字符串中的指定值。返回值是被找到的值。如果没有发现匹配,则返回 null
compile():用于改变 RegExp。 既可以改变检索模式,也可以添加或删除第二个参数
2.
直接量语法
/pattern/attributes
创建 RegExp 对象的语法:
new RegExp(pattern, attributes);
本文共 291 字,大约阅读时间需要 1 分钟。
1.RegExp 对象有 3 个方法:test():检索字符串中的指定值。返回值是 true 或 false。
exec() :检索字符串中的指定值。返回值是被找到的值。如果没有发现匹配,则返回 null
compile():用于改变 RegExp。 既可以改变检索模式,也可以添加或删除第二个参数
2.
/pattern/attributes
new RegExp(pattern, attributes);
转载于:https://www.cnblogs.com/yyzyxy/p/7146044.html