码迷,mamicode.com
首页 > Windows程序 > 详细

c#如何使用replace函数将"\"替换成"\\"

时间:2016-03-02 17:58:44      阅读:293      评论:0      收藏:0      [点我收藏+]

标签:

当我使用
 String str="c:\aa.xls";
 str=str.Replace("\","\\");时,括号为红色错误的,那么如何才能替换成"\\"呢,双引号里的内容

 

解决的方法:

1.String str=@"c:\aa.xls";
str = str.Replace(@"\", @"\\");

2.string i = @"c:\aa.xls";

Response.Write(i.Replace("\\","\\\\"));

c#如何使用replace函数将"\"替换成"\\"

标签:

原文地址:http://www.cnblogs.com/ylldbk/p/5235731.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!