c#

位置:IT落伍者 >> c# >> 浏览文章

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


发布日期:2021年08月04日
 
C#如何去掉字符串中所有空格

由于空格的ASCII码值是因此在去掉字符串中所有的空格时只需循环访问字符串中的所有字符并判断它们的ASCII码值是不是即可去掉字符串中所有空格的关键代码如下

CharEnumeratorCEnumerator=textBoxTextGetEnumerator();

while(CEnumeratorMoveNext())

{

byte[]array=newbyte[];

array=SystemTextEncodingASCIIGetBytes(CEnumeratorCurrentToString());

intasciicode=(short)(array[]);

if(asciicode!=)

{

textBoxText+=CEnumeratorCurrentToString();

}

}

               

上一篇:c# string.Format格式化日期

下一篇:Visual C#中调用Windows服务初探