C# 字符串 相關操作

你或許知道你能使用String.Trim方法去除字符串的頭和尾的空格,不幸運的是. 這個Trim方法不能去除字符串中間的C#空格。  

  static void Main()
        {
            //demo1     除去空格,提取出各個單詞
            string s = "a b c";
            string[] word = s.Split(new char[] { ' ' });
            foreach (string temp in word)
                Console.WriteLine(temp);

            //demo2     直接去除所有空格
            s=s.Replace(" ","");
            Console.WriteLine(s);

            //demo3     去掉首尾空格
            s = " aaa ";
            s = s.Trim();
            Console.WriteLine(s);
        }       

 

另一版本如下:    

  1. string text = "  My test\nstring\r\n is\t quite long  ";  
  2. string trim = text.Trim(); 

    這個'trim' 字符串將會是:

    "My test\nstring\r\n is\t quite long"  (31 characters)

    另一個清除C#空格方法是使用 String.Replace 方法, 但是這需要你通過調用多個方法來去除個別C#空格:

  1. string trim = text.Replace( " """ );  
  2. trim = trim.Replace( "\r""" );  
  3. trim = trim.Replace( "\n""" );  
  4. trim = trim.Replace( "\t""" ); 

    這裏最好的方法就是使用正則表達式.你能使用Regex.Replace方法, 它將所有匹配的替換爲指定的字符.在這個例子中,使用正則表達式匹配符"\s",它將匹配任何空格包含在這個字符串裏C#空格, tab字符, 換行符和新行(newline).

  1. string trim = Regex.Replace( text, @"\s""" ); 

    這個'trim' 字符串將會是:

  1. "Myteststringisquitelong"  (23 characters) 
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章