C# String相关

1.去掉字符串中的所有的空

string s = " select * from 
 where a =b ";
            s =  Regex.Replace(s, @"s", "");
原文地址:https://www.cnblogs.com/SoftWareIe/p/10612787.html