C#テキストボックスの文字、スペース、数字、その他の文字の個数を統計する方法


C#テキストボックスの文字、スペース、数字、その他の文字の個数を統計する方法
ToCharArrayメソッドを使用すればよい.
ソースコードは次のとおりです.
 
private void num_count()
 {
 int ch = 0;//         
 int sp = 0;//         
 int math = 0; //         
 int other = 0;//           
 char[] c = textBox2.Text.ToCharArray();//           
 foreach (char i in c)
 {
 if (i >= 'a' && i = 'A' && i = '0' && i <= '9')
 math++;
 else if (i == ' ')
 sp++;
 else
 other++;
 }
 int totalnum = ch + math + sp + other;
 labeltext2.Text = totalnum.ToString();
 }

本文は查霆オリジナル、原文住所:http://www.zhating.cn/index.php/post/56.html