Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个非常大的文本文件,其中偶尔有一个空行,底部有大面积的空行。
我可以用“G”回到绝对底部,但我如何回到空白区域开始的最后一行?或者我如何搜索“5 个连续的空白行”?
G ?.
G走到底部。?向后搜索正则表达式,.是匹配任何字符的正则表达式。
G
?
.