Excel:如何从单元格中删除所有回车符?
我想去掉单元格中的所有回车符。我该怎么做?
I want to get rid of all the carriage returns in my cell. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想去掉单元格中的所有回车符。我该怎么做?
I want to get rid of all the carriage returns in my cell. How do I do this?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
=CLEAN(A1)
Clean 从文本中删除所有不可打印的字符。 --Excel帮助文档
=CLEAN(A1)
Clean removes all nonprintable characters from text. -- Excel Help Documentation
假设您的单元格位于 A1 中,您可以使用以下公式:
根据回车符,您可能必须使用
char(13)
而不是char(10)
。Assuming your cell is in A1, you can use the following formula:
Depending on the carriage return, you may have to use
char(13)
instead ofchar(10)
.选择一个或多个单元格,单击 Excel 菜单栏中的数据/文本到列,
在第一个对话框页面上选择“分隔”选项,单击“下一步”按钮,
取消选中除“其他”之外的所有内容,然后在旁边的字段中键入 Ctrl+J
(您不会在该框中看到任何内容,但列布局图表将显示
它在换行符处被分割(它们不是回车符)......
然后只需单击“完成”按钮。
Select the cell or cells, click Data/Text To Columns form Excel's menu bar,
choose the Delimited option on the first dialog page, click the Next button,
uncheck everything except Other and type Ctrl+J into the field next to it
(you won't see anything in that box, but the column layout chart will show
that it is being split at the line feeds (they are not carriage returns)...
then just click the Finish button.
=Clean(A1)
此命令可以在 Excel 的“公式”选项卡 > > 下找到。文本。
=Clean(A1)
This command can be found in Excel under the formulas tab > text.