如何在C#中将\字符替换为\\ [英] how to replace \ character to \\ in C#

查看:96
本文介绍了如何在C#中将\字符替换为\\的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想用"\\"替换"\".

我写的如下,但它给出了错误Unexpected character ''\''.

请帮帮我.

I want to replace ''\'' with ''\\''.

I have written as below, but it gives an error as Unexpected character ''\''.

Please help me.

newfilename = filename.Replace("\","\\");

推荐答案

newfilename = filename.Replace(@"\",@"\\");.


其他可能的方式:
Other possible way:
newfilename = filename.Replace("\\","\\\\");


只需使用转义序列"\"转义"\"


Just escape ''\'' using the escapesequence ''\''


这篇关于如何在C#中将\字符替换为\\的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆