notepad++ 正则表达式 超级替换 特征替换

直接进入主题
代码如下:
<url>
<loc>https://www.lingyuok.com</loc>
<lastmod>2022-06-26T22:42:46+08:00</lastmod>
<changefreq>daily</changefreq>
<priority>1.0</priority>
</url>
<url>
<loc>https://www.lingyuok.com/lives/1504.html</loc>
<lastmod>2022-06-26T22:42:46+08:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
</url>
<url>
<loc>https://www.lingyuok.com/tutorial/1501.html</loc>
<lastmod>2022-06-26T21:49:46+08:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
</url>
<url>
<loc>https://www.lingyuok.com/tutorial/1487.html</loc>
<lastmod>2022-06-26T21:31:46+08:00</lastmod>
<changefreq>monthly</changefreq>
<priority>0.3</priority>
</url>
需要去掉链接以外的任何文本,如果常规操作,那么<lastmod></lastmod>这段语句,只能是一次一次的去掉,因为中间的文本信息不同,其实我们可以用正则表达式来实现,那我们操作可以是<lastmod>.+?</lastmod>这样,在替换试试,是不是可以直接去掉了。。

正则表达式的目的就是给定一个正则表达式和另一个字符串,我们可以达到如下的目的:

1. 给定的字符串是否符合正则表达式的过滤逻辑(称作"匹配"):

2. 可以通过正则表达式,从字符串中获取我们想要的特定部分。

其实我们也可以实现其他很多的方式

具体可以参考:https://www.runoob.com/regexp/regexp-syntax.html

https://www.cnblogs.com/fozero/p/7868687.html

文章版权归原作者所有或来自互联网,未经允许请勿转载。如有侵权请联系我删除,谢谢!
THE END
分享
二维码
打赏
< <上一篇
下一篇>>