Sublime Text 正则表达式(特定字符下方 Select 行)

Sublime Text Regular Expression (Select line below a specific character)

我尝试 select 特定的行,因为我是一名翻译,在这里我尝试了这个命令:“(>)(.*\n){2}(.*)” 但我不想要第一行,只想要“>”字符下方的那一行,(在计时器下方)

我尝试过的:

我想要的:

谢谢。

使用记事本++。

  • Ctrl+F
  • 查找内容:>.+\R\K.+
  • 检查 正则表达式
  • 取消选中 . matches newline
  • 全部查找

解释:

>.+     # > followed by 1 or more any character but newline
\R      # any kind of linebreak (i.e. \r, \n, \r\n)
\K      # forget all we have seen until this position
.+      # 1  or more any character but newline