如何在 ASCII 或普通文本中模拟回车符 (HEX 0A)?

发布于 2024-11-26 19:09:08 字数 86 浏览 1 评论 0原文

我需要模拟回车符(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

吻安 2024-12-03 19:09:08

我不知道你想要实现什么,但这里有一篇文章在 SQL 查询中使用 CHAR() 函数 http://msdn.microsoft.com/en-us/library/ms187323.aspx

insert into mytable(mytext) values('Dear Sir:' + CHAR(13)+CHAR(10) + 'This is')

换行 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.aspx

insert into mytable(mytext) values('Dear Sir:' + CHAR(13)+CHAR(10) + 'This is')

Line feed char(10)

Carriage return char(13)

聆听风音 2024-12-03 19:09:08

换行符 char(10) 正确

回车符 char(13) 出现问题。

Line feed char(10) is correct

Carriage return char(13) is giving issues.

小伙你站住 2024-12-03 19:09:08

从这个问题: 什么字符代表 a 中的新行文本区域

根据 HTML 规范,浏览器需要对行进行规范化
用户输入 CR LF (\r\n) 时中断。

因此,您无法通过浏览器插入任何其他样式的换行符。

From this question: What character represents a new line in a text area

By HTML specifications, browsers are required to canonicalize line
breaks in user input to CR LF (\r\n).

Hence, you can't insert any other style of newline through a browser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文