当前位置: 代码迷 >> ASP.NET >> 轮换掉范围内指定字符串(急)
  详细解决方案

轮换掉范围内指定字符串(急)

热度:9610   发布时间:2013-02-25 00:00:00.0
替换掉范围内指定字符串(急)
string temp="as,df;fdsa,fas;223,fd;adf,fdas;\"fdsa,dfas,fdas,fdas\",fdas;fdas,fdas;";
去带哦\"中间的,\" 逗号为固定的 \" 可以做为参数传进来

------解决方案--------------------------------------------------------
C# code
 string para = "\"";                string temp = "as,df;fdsa,fas;223,fd;adf,fdas;\"fdsa,dfas,fdas,fdas\",fdas;fdas,fdas;";                string temp_pattern = @"(?<="+para+@"[\s\S]*?),(?=[\s\S]*?"+para+")";                temp = Regex.Replace(temp, temp_pattern, "");//as,df;fdsa,fas;223,fd;adf,fdas;\"fdsadfasfdasfdas\",fdas;fdas,fdas;
------解决方案--------------------------------------------------------
1楼正解
  相关解决方案