如何将转义字符写入字符串?
如何将转义字符“\”写入字符串?
How to write escape character "\" to string?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何将转义字符“\”写入字符串?
How to write escape character "\" to string?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
在普通字符串中,您使用
\\
如果这是在正则表达式中,则需要为
\\\\
RegEx 需要四个的原因是因为字符串解析器和正则表达式引擎支持转义。因此,
\\\\
由字符串解析器解析为\\
,然后由 RegEx 解析器解析为文字\
。In a normal string, you use
\\
If this is in a regular expression, it needs to be
\\\\
The reason RegEx needs four is because both the String parser and RegEx engine support escapes. Therefore,
\\\\
is parsed to\\
by the String parser then to a literal\
by the RegEx parser.转义转义字符:
"\\"
Escape the escape character:
"\\"
您可以通过在字符前面添加“\”来转义某些字符。
所以
\\
适合你。You escape certain characters by adding "\" in front of the character.
So
\\
will work for you.在字符串中使用双 \
Use double \ in string
与某些情况下相同
...我不是 100% 确定,但我认为这可能取决于语言...我知道“@”在 C# 中有效
is the same as
in some cases... i'm not 100% sure but i think it might be language dependant... i KNOW "@" works in C#
您可以这样写:
\
是字符串中用于转义的特殊字符。"\"
现在可以工作,因为它转义了第二个"
。要获得文字
\
,您需要使用\ 转义它
。You can write:
\
is a special character within a string used for escaping."\"
does now work because it is escaping the second"
.To get a literal
\
you need to escape it using\
.