熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

C#如何去掉字符串中所有空格

2022-06-13   來源: .NET編程 

  由於空格的ASCII碼值是因此在去掉字符串中所有的空格時只需循環訪問字符串中的所有字符並判斷它們的ASCII碼值是不是即可去掉字符串中所有空格的關鍵代碼如下

  CharEnumeratorCEnumerator=textBoxTextGetEnumerator();

  while(CEnumeratorMoveNext())

  {

  byte[]array=newbyte[];

  array=SystemTextEncodingASCIIGetBytes(CEnumeratorCurrentToString());

  intasciicode=(short)(array[]);

  if(asciicode!=)

  {

  textBoxText+=CEnumeratorCurrentToString();

  }

  }


From:http://tw.wingwit.com/Article/program/net/201311/12580.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.