正则表达式解析锚标记的 href
我有 html 代码:
<a href="javascript:void(0);" id="seller0-showAllImage" onclick="showPlusBox(0,'/products/plusbox?cid=9286328115358229395&authorid=2860562')" class="fl">
结果我只需要字符串:
/products/plusbox?cid=9286328115358229395&authorid=2860562
如何在正则表达式中从 html 代码匹配它? 谢谢!
I have html code:
<a href="javascript:void(0);" id="seller0-showAllImage" onclick="showPlusBox(0,'/products/plusbox?cid=9286328115358229395&authorid=2860562')" class="fl">
in result I need to have only string:
/products/plusbox?cid=9286328115358229395&authorid=2860562
How can I match it in RegEx from the html code?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
匹配:
引用
$1
就是您要查找的字符串。当然,这很大程度上取决于您想要匹配的确切字符串;它嵌入的位置等等。仅举一个例子就没有太多可以推断的了。 正则表达式也会匹配您正在寻找的内容。
老实说,例如,
Match:
Reference
$1
is then the string you're looking for.Of course, this depends pretty much on the exact strings you want to match; where it's embedded, etc. With a single example there isn't much to extrapolate. Honestly, the Regex
would also match what you're looking for, for example.
这个正则表达式:
匹配它。
如果您想要更通用的表达方式,请提供更多信息。
This regex:
Matches it.
If you want a more generic expression, please provide more info.