- Ctrl+H
- 找什么:
(?:\S+\s+){7}\S+\K
- 用。。。来代替:
.
- 查看 环绕
- 查看 正则表达式
- Replace all
解释:
(?: # non capture group
\S+ # 1 or more non space
\s+ # 1 or more spaces
){7} # end group, must appear 7 times
\S+ # 1 or more non space
\K # forget all we have seen until this position
截图(之前):
截图(之后):