C# 如何去掉string中所有转义字符(特殊符号)?
2022-11-15 · 百度认证:北京惠企网络技术有限公司官方账号
stringinputString=@”helloworld]\“;
StringBuildersb=newStringBuilder();
string[]parts=inputString.Split(newchar[]{’‘,‘\n’,‘\t’,‘\r’,‘\f’,‘\v’,’\’},StringSplitOptions.RemoveEmptyEntries);
intsize=parts.Length;
for(inti=0;i<size;i++);
sb.AppendFormat(“{0}“,parts[i]);
2、删除字符串头尾的转义等特殊字符串:
使用SubString和Remove来操作
比如去掉结尾的转义字符,可以使用
inputString.SubString(0,inputString.Length-1);
inputString.SubString(0,inputString.Length-2);
inputString.SubString(0,inputString.Length-3);
扩展资料
C#字符串取消转义字符的转义作用,使其正常显示
usingSystem;
usingSystem.Collections.Generic;
usingSystem.ComponentModel;
usingSystem.Data;
usingSystem.Drawing;
usingSystem.Linq;
usingSystem.Text;
usingSystem.Windows.Forms;
namespacetest1
{
publicpartialclassForm2:Form
{
publicForm2()
{
InitializeComponent();
}
privatevoidbutton1_Click(objectsender,EventArgse)
{
stringstr=@"D:\document\test.txt";
stringstr1="D:\\document\\test.txt";
MessageBox.Show(str+"---"+str1);
}
}
}