当前位置: 代码迷 >> ASP.NET >> 剔除指定字符串(急)
  详细解决方案

剔除指定字符串(急)

热度:9246   发布时间:2013-02-25 00:00:00.0
删除指定字符串(急!)
string temp="as,df;fdsa,fas;223,fd;adf,fdas;\"fdsa,fdas\",fdas;fdas,fdas;";

我要删除\" \" 中间的逗号怎么删除?

------解决方案--------------------------------------------------------
C# code
 string temp = "as,df;fdsa,fas;223,fd;adf,fdas;\"fdsa,fdas\",fdas;fdas,fdas;";                temp = Regex.Replace(temp,@"(?<=""[^'""]*?),(?=[^'""]*?"")","");//                //as,df;fdsa,fas;223,fd;adf,fdas;\"fdsafdas\",fdas;fdas,fdas;
  相关解决方案