使用Notepad ++替换

时间:2016-02-11 08:18:06

标签: regex replace notepad++

我需要在文本文件中查找并替换特定文本(这是一个字幕文件)。我正在使用Notepad ++。

以下是一个示例:

1 
10:00:12,042 --> 10:00:15,959 
This is text.

2 
10:00:17,542 --> 10:00:21,709 
This is another text

我想在有新行和回车符(\ n \ r)后跟'10:'时查找并替换它,并将其替换为'00:'

1 
00:00:12,042 --> 10:00:15,959 
This is text.

2 
00:00:17,542 --> 10:00:21,709 
This is another text

你能否建议我在Notepad ++ Find& Replace对话框中使用正则表达式?

我尝试过使用:

\n\r10:

但继续“找不到文字”\ n \ r10:“'

2 个答案:

答案 0 :(得分:4)

搜索^10:并将其替换为00:

答案 1 :(得分:2)

选择Search Mode > Regular Expression

查找内容:^10

替换为:00