标签:def index UNC col turn 形参 否则 OLE 构造
正则构造方式:
var reg = new RegExp(‘abc‘,‘ig‘); // 或 var reg = /abc/ig;
常用方法;
// test() // regexp.test(string) console.log( /\d+/.test(‘ds21ds‘) ) // true // match() // string.match(regexp) // 若加上量词g则一次性捕获所有匹配的内容放到数组里返回, // 否则,返回值是一个数组,内容包含三项, // 分别是匹配的内容、匹配内容的起始索引、原字符串 console.log( ‘ds21ds‘.match(/\d+/g) ) // ["21"]
console.log( ‘ds21ds‘.match(/\d+/) ) // ["21", index: 2, input: "ds21ds", groups: undefined]
// 或为 null
// replace() // string.replace(值类型 | regexp, 值类型 | 回调函数) var str = "11a22b33c44d";
console.log( str.replace(/\d+/g,‘_‘) ) // _a_b_c_d var newStr = str.replace(/\d+/g, function ($0,$1,$2) { // 第一个形参$0 表示匹配的字符 // 第二个形参$1 表示匹配字符的起始索引 // 第三个形参$2 表示原字符串 return $0*2; }); console.log(str);//11a22b33c44d console.log(newStr);//22a44b66c88d // 若有量词,则分组里面的内容是匹配字符的最后一个字符 var newStr2 = str.replace(/(\d+)/g, function ($0,$1,$2) { // 第一个形参$0 表示匹配的字符 // 若有分组,则从第二个参数开始就是分组的内容 // 倒数第二个形参 表示匹配字符的起始索引 // 倒数第一个形参 表示原字符串 return $0*2; }) console.log(str);//11a22b33c44d console.log(newStr2);//22a44b66c88d
src: /\bsrc\b\s*=\s*[\‘\"]?([^\‘\"]*)[\‘\"]?/ig
标签:def index UNC col turn 形参 否则 OLE 构造
原文地址:https://www.cnblogs.com/_error/p/10184111.html