在记事本++中找到LF(换行符)

时间:2015-09-27 15:41:21

标签: regex notepad++

您可以在记事本++中找到以LF(换行符)结尾的行吗?我只想找到以LF而不是CR结束的行。在下面的例子中,搜索应该只返回15xxxxxKL的办公室职员。

Sample

2 个答案:

答案 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