使用C#處理字符串是一個(gè)常見的情況,當(dāng)字符串中含有空格或者換行符號(hào)的時(shí)候,如果業(yè)務(wù)需要,我們可以通過相應(yīng)的方法將之處理掉,處理成不含空格和換行符號(hào)的字符串,處理的過程使用到正則表達(dá)式。 具體函數(shù)處理的過程如下: static void Main(string[] args) { List<string> list = new List<string>(); list.Add("\r \n aab bcc"); list.Add("aab bcc \r \ndd"); list.Add("aa\r b b \n cc"); Regex regex = new Regex(@"\s"); for (int i = 0; i < list.Count;i++ ) { string str = list[i]; list[i]=regex.Replace(str,"",str.Length); } foreach(string s in list) { Console.WriteLine(s); } } 擴(kuò)展閱讀:目前國(guó)內(nèi)主流的云服務(wù)器廠商有哪些_IT技術(shù)小趣屋。 備注:原文轉(zhuǎn)載自C#處理空格和換行_IT技術(shù)小趣屋。 |
|