在 string.replace 中转义反斜杠

发布于 2024-10-14 10:36:55 字数 257 浏览 3 评论 0原文

我有一个带有以下字符串的图像控件

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 技术交流群。

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

发布评论

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

评论(2

凉墨 2024-10-21 10:36:55

您可以使用“\”单独转义字符串字符,也可以通过在任何字符串前面添加 @ 前缀将其更改为字符串文字。

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.

千纸鹤 2024-10-21 10:36:55

反斜杠是字符串中的特殊字符,用于启动转义序列。您需要“转义” \,因此您应该使用 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("\\","/")

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