使用正则表达式我想获取一个包含.xls或.xlsx文本的href
我想坚持这个正则表达式
<a\s*[^>]*\s*href\s*=\s*((?:[^ ]|[\n\r])+)\s*[^>]*>.*?<\/a>
但是我应该在这里添加什么,以便我只能获得锚定标记中包含.xls或.xlsx文本的链接。
答案 0 :(得分:0)
许多潜在的问题都是这样做的,但是使用JavaScript:
var re = new RegExp(/<a\s*[^>]*\s*href\s*=\s*((?:[^ ]|[\n\r])+)((\.xls)|(\.xlsx))\s*[^>]*>.*?<\/a>/ig);
txt = 'ok, here you go: <a href="test.xls">test file</a> and <a href="http://not.test.com">not file</a>, but another <a href = "http://www.xls.com/test.xls">test file</a>!';
txt.match(re)
=> ['<a href="test.xls">test file</a>', '<a href = "http://www.xls.com/test.xls">test file</a>']