Notepad ++ Regex Mark

时间:2015-10-09 11:26:19

标签: regex notepad++

我有一个像这样的列表

randomtext.html
file1
file1
file2

我想用html标记行后的第一行。因此,它应该只标记第一个“file1”

2 个答案:

答案 0 :(得分:1)

尝试使用:

Mark tab

找到:html\R\K.+

请确保您没有查看. matches newline并查看Mark lines然后点击查找全部

<强>解释

html  : Literally html
\R    : any kind of line break (ie. \n or \r or \r\n)
\K    : forget everything found before
.+    : Everything until the next line break. (ie. the second line).

答案 1 :(得分:0)

首先,我想问一下马克是什么意思?

按ctrl + h。选择正则表达式,您可以使用以下正则表达式: -

查找:(。*)html \ r \ n(。)\ r \ n(。

替换: $ 1html \ r \ n ------- $ 2 \ r \ n $ 3

这里我使用'-------'作为标记,你可以根据需要放置标记。