Sublime如何替换换行符

使用正则表达式(Regular expression)替换。

第一步,使用快捷键 Ctrl + H (MAC:option + command + H),打开查找替换窗口。

然后,按下 Alt + R (MAC:option + command + R)快捷键开启正则替换模式。

第二步,在查找框输入\n,替换框输入英文逗号。

第三步,点击 Replace All即可。

举例:
原始:
interface g1/1/1
interface g1/1/2
interface g1/1/3
interface g1/1/4
!
预期:
interface g1/1/1
 port link-type trunk
interface g1/1/2
 port link-type trunk
interface g1/1/3
 port link-type trunk
interface g1/1/4
 port link-type trunk
!

Find what:\ninterface
Replace with:\n port link-type trunk\ninterface

发表回复