在 string.replace 中转义反斜杠
我有一个带有以下字符串的图像控件
http://test.site.com\Content\Images\ProductImages\73\700-4aad-be94-e0b79982951f_0_Chrysanthemum__Product_Search.jpg
,我想替换 stringcleartext=imagePath.Replace("\","/");
但反斜杠会导致问题 - 如何替换反斜杠?
I have an image control with the following string
http://test.site.com\Content\Images\ProductImages\73\700-4aad-be94-e0b79982951f_0_Chrysanthemum__Product_Search.jpg
I want to replace string cleartext=imagePath.Replace("\","/");
but the backslash causes a problem -- how can I replace the backslash?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用“\”单独转义字符串字符,也可以通过在任何字符串前面添加
@
前缀将其更改为字符串文字。MSDN 上提供了相关文档: http:// msdn.microsoft.com/en-us/library/aa691090(v=vs.71).aspx。
另一个了解字符串在 C# 中如何工作的好资源是:http://csharpindepth.com/Articles/General /Strings.aspx。
You can escape the string characters individually with "\" or you can change any string into a String literal by prefixing it with an
@
.Documentation for this is available at MSDN: http://msdn.microsoft.com/en-us/library/aa691090(v=vs.71).aspx.
Another good resource for understanding how strings work in C# is: http://csharpindepth.com/Articles/General/Strings.aspx.
反斜杠是字符串中的特殊字符,用于启动转义序列。您需要“转义” \,因此您应该使用 imagePath.replace("\\","/")
The backslash is a special character in strings that starts an escape sequence. You need to "escape" the \, so you should use imagePath.replace("\\","/")