C# 字符串 - 创建未转义的反斜杠
我正在使用 .NET (C#) 代码写入与 Perl 应用程序交互的数据库。当字符串中出现单引号时,我需要“转义”它。 IOW,名称 O'Bannon
应转换为 O\'Bannon
以进行数据库 UPDATE。然而,字符串操作(例如.Replace)的所有努力都会为反斜杠生成转义字符,最终得到O\\'Bannon
。
我知道它实际上生成了第二个反斜杠,因为我可以读取生成的数据库字段的值(即它不仅仅是字符串的 IDE 调试值)。
如何在输出字符串中只获取单个反斜杠?
右
I am using .NET (C#) code to write to a database that interfaces with a Perl application. When a single quote appears in a string, I need to "escape" it. IOW, the name O'Bannon
should convert to O\'Bannon
for the database UPDATE. However, all efforts at string manipulation (e.g. .Replace) generate an escape character for the backslash and I end up with O\\'Bannon
.
I know it is actually generating the second backslash, because I can read the resulting database field's value (i.e. it is not just the IDE debug value for the string).
How can I get just the single backslash in the output string?
R
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
好吧,我做到了
,结果是
这是你想要的吗?
Well I did
and result is
Is this what you want?
您可以使用
"\\"
,它是转义字符,后跟反斜杠。请参阅此处的转义序列列表:http://msdn.microsoft.com/en -us/library/h21280bw.aspx
You can use
"\\"
, which is the escape char followed by a backslash.See the list of Escape Sequences here: http://msdn.microsoft.com/en-us/library/h21280bw.aspx
更好的是为替换分配一个 var ,以便您可以在需要时检查它
even better assign a var to the replace so that you can check it as well if needed
您还可以使用逐字字符串
You can also use a verbatim string