Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个这样的 html 链接结构<a href=dynamicURL>LinkName</a>。 我想提取LinkName,所以我可以从链接中获取下一个 HTML 请求的动态 URL。
<a href=dynamicURL>LinkName</a>
LinkName
有没有脚本之类的解决方案?
使用正则表达式提取器和正则表达式:
<a\shref=([^>]+)>LinkName<\/a>
\s= 空格 [^>]+= 所有不等于 > \/= 转义正斜杠
\s
[^>]+
\/
试试这个网站,它使学习正则表达式变得容易。