C#如何统计出文本框中字母、空格、数字及其他字符的个数
private void num_count()
{
int ch = 0;//用来统计字母的数量
int sp = 0;//用来统计空格的数量
int math = 0; //用来统计数字的数量
int other = 0;//用来统计其它字符的数量
char[] c = textBox2.Text.ToCharArray();//把字符串转换成字符数组
foreach (cha...
原创
2019-11-22 17:42:09 ·
1774 阅读 ·
0 评论