如何在 Notepad++ 中删除包含连字符、数字和特定 TLD 的行
How to remove lines that have Hyphens, Numbers and a spesific TLDs in Notepad++
我有一个包含域名的 txt 文件。
asd.com
ass.net
sdf.info
as-er.net
019-ne.com
012.com
01dc.net
我想要这些
asd.com
首先我想删除带有连字符和数字的行,无论扩展名是什么。
我不想删除 .com 行。我想删除 .net、.org、.info 等行而且如果一行中有连字符或数字,.com 也可以删除,否则我不想删除 .com 行我只想收集 .com 行没有哑巴和连字符
如何使用 Notepad++ 执行此操作
谢谢
您可以在正则表达式模式下尝试以下查找和替换:
Find: ^(?:.*(?!\.com)\.\w+|.*[0-9-].*)\R
Replace: (empty)
下面是对正则表达式模式的解释:
^ from the start of the line
(?: match EITHER of the following two patterns
.*(?!\.com)\.\w+ match anything NOT ending in .com
| OR
.*[0-9-].* match anything which has a digit or hyphen
)
\R OS independent line ending
我有一个包含域名的 txt 文件。
asd.com
ass.net
sdf.info
as-er.net
019-ne.com
012.com
01dc.net
我想要这些
asd.com
首先我想删除带有连字符和数字的行,无论扩展名是什么。 我不想删除 .com 行。我想删除 .net、.org、.info 等行而且如果一行中有连字符或数字,.com 也可以删除,否则我不想删除 .com 行我只想收集 .com 行没有哑巴和连字符
如何使用 Notepad++ 执行此操作
谢谢
您可以在正则表达式模式下尝试以下查找和替换:
Find: ^(?:.*(?!\.com)\.\w+|.*[0-9-].*)\R
Replace: (empty)
下面是对正则表达式模式的解释:
^ from the start of the line
(?: match EITHER of the following two patterns
.*(?!\.com)\.\w+ match anything NOT ending in .com
| OR
.*[0-9-].* match anything which has a digit or hyphen
)
\R OS independent line ending