如何删除 notepad++ 中每行的最后一部分?

如何删除 notepad++ 中每行的最后一部分?

我知道这可以在 notepad++ 中完成,但我找不到正确的替换语法。

我想删除这句话的最后一部分,从以下部分开始?

http://sportnaslava.info/wiki/index.php?title=User:CisBlakeman861

这样就变成了:

http://sportnaslava.info/wiki/index.php

答案1

正则表达式是\?.*$

\? mean question mark itself
.* mean everything else
$ means the end of line.

因此,我们搜索以问号开头并持续到行尾的内容。不要忘记将“搜索模式”设置为“正则表达式”

在此处输入图片描述

答案2

http://lunar.earth.northwestern.edu/mediawiki/index.php/Limitless_It_the_film_high_quality
http://sportnaslava.info/wiki/index.php?title=User:CisBlakeman861

使用这些示例,最好使用类似以下内容:

index\.php.*$

然后替换为:

index.php

这应该会找到 index.php 之后的所有内容(包括该内容),并将其替换为 index.php。

http://lunar.earth.northwestern.edu/mediawiki/index.php
http://sportnaslava.info/wiki/index.php

相关内容