C#去除字串空格的幾種方法收藏

weixin_34262482發表於2010-05-18

1.正規表示式:System.Text.RegularExpressions.Regex.Replace(str, "([ ]+)", "") --   str是輸入或要檢測的字串。

2.使用字串自帶的Replace方法:str.Replace(" ","")-------------   str是輸入或要檢測的字串。

3.由於空格的ASCII碼值是32,因此,在去掉字串中所有的空格時,只需迴圈訪問字串中的所有字元,並判斷它們的ASCII碼值是不是32即可。去掉字串中所有空格的關鍵程式碼如下:

  1. CharEnumerator CEnumerator = textBox1.Text.GetEnumerator();
  2. while (CEnumerator.MoveNext())
  3. {
  4. byte[] array = new byte[1];
  5. array = System.Text.Encoding.ASCII.GetBytes(CEnumerator.Current.ToString());
  6. int asciicode = (short)(array[0]);
  7. if (asciicode != 32)
  8. {
  9. textBox2.Text += CEnumerator.Current.ToString();
  10. }
  11. }

這裡的3種方法只能去除半形空格,不能去除全形空格。

相關文章