标签:new pre 替换 方法 asc mat attr highlight att
取出字符串“10px”里的“10”大概有三种方法
var str="10px"; /\d+/.exec(str);//方法一,用的是正则对象的方法exec str.match(/\d+/));//方法二,用的是字符串对象的方法match str.replace(/px/,"");//方法三,把px替换成空,用的是字符串对象的方法replace
/pattern/attributes
new RegExp(pattern, attributes);
很明显直接量语法爽歪歪
标签:new pre 替换 方法 asc mat attr highlight att
原文地址:http://www.cnblogs.com/qdog/p/6874420.html