【发布时间】:2009-09-08 00:29:54
【问题描述】:
如果我的 Eclipse 编辑器中有以下文本:
Text Line 1
Text Line 2
我想将文本连接成:
Text Line 1Text Line 2
我的第一个想法是搜索回车符'\n'并将其替换为''以连接它。
我尝试使用 Eclipse 的搜索功能,但它不识别回车符。
有没有其他编辑器可以做到这一点?
【问题讨论】:
-
回车符不是\n,是\r。
标签: eclipse editor text-editor