概述:
本文介绍开发过程中遇到的某个字符串中有逗号或空格需要去掉的解决方法
代码:
//C# 将多个逗号替换为一个逗号
string str1 = new Regex("[,]+").Replace("1,,3,,4,,,,,,6", ",");
//C# 将多个空格替换为一个空格
string str2 = new Regex("[\\s]+").Replace("1 3 4 6", " ");
//C#去掉字符串首尾逗号
string str3 = new Regex("^,*|,*$").Replace(",1346,", "");
原创不易,转载请保留本站版权。