一、方法一:new RegExp
1、概述: RegExp 是正则表达式的缩写;
当检索某个文本时,可以使用一种模式来描述要检索的内容。RegExp 就是这种模式
2. RegExp对象的方法
1) RegExp 对象有 3 个方法:test()、exec() 以及 compile();
test()
- test() 方法检索字符串中的指定值。返回值是 true 或 false;
let b = new RegExp('f') console.log(b.test('abdcfa')) //true
exec()
- exec() 方法检索字符串中的指定值。返回值是被找到的值。如果没有发现匹配,则返回 null;
let b = new RegExp('f') console.log(b.exec('abdcfaff dlfja'))
compile()
- compile() 方法用于改变 RegExp。compile() 既可以改变检索模式,也可以添加或删除第二个参数;
-
let e = new RegExp('a') console.log(e.test('jfjdlfa'))//true e.compile('b') console.log(e.test('jfjdlfa'))//false
参考:
https://www.cnblogs.com/yejt/p/16201814.html
标签:字符,console,log,exec,compile,某个,test,字符串,RegExp From: https://www.cnblogs.com/wang715100018066/p/16706847.html