首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > asp.net >

剔除指定字符串(急)

2012-09-09 
删除指定字符串(急!)string tempas,dffdsa,fas223,fdadf,fdas\fdsa,fdas\,fdasfdas,fdas我要

删除指定字符串(急!)
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; 

热点排行