如果字符串是
<li>Your browser may be missing a required plug-in contained in <a href="http://get.adobe.com/reader/">Adobe Acrobat Reader</a>. Please reload this page after installing the missing component.<br />If this error persists, you can also save a copy of <a href="test.pdf">
我写的正则表达式是
/href=.*?.pdf/
这导致捕获第一个“href”并以“.pdf”结尾。我需要它从第二个 href 开始。换句话说,它应该只捕获以 .pdf 结尾的 href
我应该如何使用正则表达式来解决这个问题?