如何在 ASCII 或普通文本中模拟回车符 (HEX 0A)?
我需要模拟回车符(0A)从Web应用程序保存到数据库中,以便我可以证明系统没有清理导致一些问题的数据,这需要在浏览器中以纯文本形式输入,是我们能做到这一点吗?
i am required to simulate a carriage return (0A) to save into the database from a web application so that i can prove that the system is not cleaning data causing some issues, this needs to be entered in the browser as a plain text, are we able to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道你想要实现什么,但这里有一篇文章在 SQL 查询中使用
CHAR()
函数 http://msdn.microsoft.com/en-us/library/ms187323.aspx换行
char(10)
回车符
char(13)
I don't know what you are trying to achieve, but here's an article that uses
CHAR()
function in SQL query http://msdn.microsoft.com/en-us/library/ms187323.aspxLine feed
char(10)
Carriage return
char(13)
换行符 char(10) 正确
回车符 char(13) 出现问题。
Line feed char(10) is correct
Carriage return char(13) is giving issues.
从这个问题: 什么字符代表 a 中的新行文本区域
因此,您无法通过浏览器插入任何其他样式的换行符。
From this question: What character represents a new line in a text area
Hence, you can't insert any other style of newline through a browser.