Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要记事本++的帮助。我想删除所有没有字母的行,我想删除所有以字母 N 开头的行:
这是我要删除的图片
你能帮助我吗?
首先在正则表达式模式下,替换^N.*$为空。然后,在扩展模式下替换\r\n\r\n为\r\n.
^N.*$
\r\n\r\n
\r\n
您必须使用查找和替换对话框。然后你需要检查正则表达式单选按钮。
要删除要替换的空行,您必须编写
^\n或者^\r\n,如果您使用 Windows 样式的换行符,并且在要替换的内容中,您无需编写任何内容。
^\n
^\r\n
要删除以 N 开头的行,您必须编写
^N.*\n或者^N.*\r\n,如果您使用 Windows 样式的换行符,并且在要替换的内容中,您无需编写任何内容。
^N.*\n
^N.*\r\n