RegExp 对象
RegExp 对象表示正则表达式,它是对字符串执行模式匹配的强大工具。
直接量语法
/pattern/attributes
实例:window.location.href:http://localhost:8100/aspx/main/ServiceCenter_list.aspx?category_id=93&page=2
要匹配到的category_id=93:/category_id=\d+/g
创建 RegExp 对象的语法:
new RegExp(pattern, attributes);
实例:window.location.href:http://localhost:8100/aspx/main/ServiceCenter_list.aspx?category_id=93&page=2
要匹配到的category_id=93:new RegExp("category_id=\\d+","g")
参数
参数 pattern 是一个字符串,指定了正则表达式的模式或其他正则表达式。
参数 attributes 是一个可选的字符串,包含属性 "g"、"i" 和 "m",分别用于指定全局匹配、区分大小写的匹配和多行匹配。ECMAScript 标准化之前,不支持 m 属性。如果 pattern 是正则表达式,而不是字符串,则必须省略该参数。
返回值
一个新的 RegExp 对象,具有指定的模式和标志。如果参数 pattern 是正则表达式而不是字符串,那么 RegExp() 构造函数将用与指定的 RegExp 相同的模式和标志创建一个新的 RegExp 对象。
如果不用 new 运算符,而将 RegExp() 作为函数调用,那么它的行为与用 new 运算符调用时一样,只是当 pattern 是正则表达式时,它只返回 pattern,而不再创建一个新的 RegExp 对象。
1.实例:使用javascript语言用正则获取url中某一个参数
地址:window.location.href:http://localhost:8100/aspx/main/ServiceCenter_list.aspx?category_id=93&page=2
目的:获取到93参数值
方法一:
function GetCate(){
var str= window.location.href;
var CateID=str.match(/category_id=(\d)+/i)[1];
return CateID;
}
方法二:
function GetCate(){
var str=window.location.href;
var CateID=str.match(new RegExp("category_id=\\d+","i")).replace("category_id","");
return CateID;
}