admin管理员组文章数量:1352011
Logout
That above is what I want to search for.
I want to get h= and t= from that URL, or just get the entire url in href=""
How would I do this with regex?
Logout
That above is what I want to search for.
I want to get h= and t= from that URL, or just get the entire url in href=""
How would I do this with regex?
Share Improve this question edited May 8, 2010 at 4:06 user177800 asked May 8, 2010 at 4:05 zx.zx. 2492 gold badges4 silver badges12 bronze badges 7- 2 parse it with an HTML parser, parsing HTML with regex will always in end in tears eventually. – user177800 Commented May 8, 2010 at 4:07
- Will your search strings always follow that same format (<u class="..." href="...)? – ABach Commented May 8, 2010 at 4:11
- Yes, it will always follow the same format. – zx. Commented May 8, 2010 at 4:13
- 1 In the spirit of @fuzzy's ment, I refer you to this answer: stackoverflow./questions/1732348/… – Nick Craver Commented May 8, 2010 at 4:14
- Do you know how I would do this? That's fine if it ends in tears :x – zx. Commented May 8, 2010 at 4:31
3 Answers
Reset to default 5You should be able to get the href
with:
var array_of_matches = str.match(/href="([^"]*")/g)
Look for 'href="' then start a capture group of all non-double-quote characters, until it ends with a final doublequote. You can pull out the query arguments using more groups inside that group.
Look at this javascript regex tutorial. And the global flag to get the array of matches described in the string regex api.
This should return both h
and t
values:
logout.php\?h=(\w+)&t=(\w+)
/href="[^"]+"/g
本文标签: Regex javascript to match hrefStack Overflow
版权声明:本文标题:Regex javascript to match href - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743872075a2553656.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论