gpt4 book ai didi

regex - Notepad++ 正则表达式结尾

转载 作者:行者123 更新时间:2023-12-05 01:04:45 25 4
gpt4 key购买 nike

我想删除所有行,直到出现一些终止字符串。所以像这样:

These
lines
|| that can contain numbers 123 or characters like |*{
will be removed
But the following lines
will
remain.

我想获得:
But the following lines
will
remain.

我尝试搜索正则表达式 /removed$/并用空字符串替换,但它显示 0 matches .

我怎样才能做到这一点?

谢谢你的帮助 !

最佳答案

确保选中“.matches newline”,并使用 .*removed\.$ :

请注意,您需要 .*在开始时匹配所有内容直到终止字符串,并且您必须转义文字 .在末尾。

此外,Notepad++ 不希望其正则表达式周围有斜线。

如果您没有 .在终结符的末尾,只需删除 \.从正则表达式。

要删除尾随的换行符,您可以使用 .*removed\r?\n? .

screenshot

关于regex - Notepad++ 正则表达式结尾,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22646046/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com