gpt4 book ai didi

c# - C# 字符串中控制字符的转义码

转载 作者:行者123 更新时间:2023-12-04 12:06:06 25 4
gpt4 key购买 nike

我想找到 Microsoft Word 中使用的以下控制字符的代码。

enter image description here

我找到了其中的一些。如果我错了,请纠正我。
我已经为他们浏览了网络。但我无法找到一些代码。

最佳答案

可用的转义符号列表是这个,来自 What character escape sequences are available? (by Jon Skeet) :

\' – single quote, needed for character literals
\" – double quote, needed for string literals
\\ – backslash
\0 – Unicode character 0
\a – Alert (character 7)
\b – Backspace (character 8)
\f – Form feed (character 12)
\n – New line (character 10)
\r – Carriage return (character 13)
\t – Horizontal tab (character 9)
\v – Vertical quote (character 11)
\uxxxx – Unicode escape sequence for character with hex value xxxx
\xn[n][n][n] – Unicode escape sequence for character with hex value nnnn (variable length version of \uxxxx)
\Uxxxxxxxx – Unicode escape sequence for character with hex value xxxxxxxx (for generating surrogates)
如果您需要的转义码不能直接用作简单的转义码,则可以使用十六进制转义码。例如,在您的情况下, \x0E为 14 或 \x15 21. 正如 Jon Skeet 的评论中所述:最好使用 Unicode 版本,即 \u000e\u0015 .

关于c# - C# 字符串中控制字符的转义码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57252566/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com