需求:要将包含.PHP后缀的链接如 href="abc.PHP?p=1" 替换为空链接 href="#"
查找:
href=".+?\.PHP.+?"
替换:
href="#"
参考资料:Notepad++的正则表达式替换和替换