gpt4 book ai didi

正则表达式 - 删除所有不包含字符串的行? - 崇高的文字

转载 作者:行者123 更新时间:2023-12-02 06:31:34 24 4
gpt4 key购买 nike

我正在寻找一个正则表达式,它可以帮助我删除 sublime text 中不包含的所有行。

例如:

我有一个包含域的文本文件:

abc.com
def.com
ghi.com
com
jkl.com
com

我想使用正则表达式删除所有不包含 .所以结果应该是这样的:

abc.com
def.com
ghi.com
jkl.com

提前感谢您的帮助! :)

最佳答案

搜索没有句号的行:

^[^.]*$\n

正则表达式的意思是:

^      (match beginning of the line)
[^.]* (look for any non-period character 0 or more times)
$ (match the end of the line)
\n (match newline character)

只需将这些行替换为空字符串即可。

关于正则表达式 - 删除所有不包含字符串的行? - 崇高的文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34755971/

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