http://www.cnblogs.com/abc/archive/2013/05/06/3063969.html
我要提取包客源的url 中abc这个位置的字符串
这个位置柏寒数据和字母以及一些特殊字符。
js 用正则表达式改如何提取呢
var str = 'http://www.cnblogs.com/abc/archive/2013/05/06/3063969.html';
var reg = /\.com\/([^\/]+?)\//;
console.log(a.match(reg)[1])
笔误,是str.match