如何防止链接搜索跨标签溢出?
我有一个本地网站,其页面包含各种类的超链接,并且想知道如何防止搜索结果溢出多个标签。(我需要对特定链接类型的地址进行批量修改。)
例如,我的页面可能包含链接列表,例如
Best solution:<br>
<a href="aaa.html" class="xxx">AAA</a><br> but see also
<a href="bbb.html" class="yyy">BBB</a><br> and
<a href="ccc.html" class="zzz">CCC</a><br>.
现在,当我尝试使用正则表达式搜索词在网站上仅搜索“zzz”类的链接时
<a href="+[].html" class="zzz">
我的结果包括长字符串,例如
<a href="aaa.html" class="xxx">AAA</a><br> but see also <a href="bbb.html" class="yyy">BBB</a><br> and <a href="ccc.html" class="zzz>
发生的事情是搜索引擎(Funduc Search & Replace,如果有帮助的话)找到<a href=
第一个链接(aaa.html)的匹配类,第三个链接的匹配类(ccc.html),并包括其间的所有内容。
我必须使用什么表达式来确保只有具有正确类的文件的链接才会出现在搜索结果中?
例如,
<a href="ccc.html" class="zzz>
谢谢你的帮助。