我有一些链接,如下面的链接,
Some text will come here <a class="checkSomething" href="https://something.com" style="color: rgb(255, 255, 255); font-size: 17px;">Check Status</a>. Some text will come here <a href="#">Click</a> Some text will come here.
从上面的字符串我想要提取href
类名所在的值checkSomething
。
基本上我必须单独获取链接,即https://something.com
我试过下面的正则表达式
/<a class="checkSomething" href="([^"]*)">/
但它提供了<a>
如下标签的链接
<a class="checkSomething" href="https://something.com"
有人可以帮我吗?提前致谢!
呼如林
相关分类