答案 0 :(得分:2)
您可以使用^[^\r\n]*\n
等正则表达式进行搜索。
但是,根据this answer,在Notepad ++ 6.0中引入了在正则表达式模式下使用\n
的能力。在此版本之前,您必须使用扩展搜索模式(不能使用正则表达式)。
答案 1 :(得分:0)
我使用这个正则表达式:
^.+?(?!\r)\n
<强>解释强>
^ : begining of line
.+? : one or more any character (not greedy)
(?!\r) : negative look-ahead to make sure there is not a carriage return
\n : line feed