如何计算大写,小写和特殊字符

时间:2019-10-14 14:22:08

标签: c# visual-studio

我想用C#创建一个GUI。在此GUI中,我只有一个文本字段,当填充此文本字段时,我想查看使用了多少个大写,小写和特殊字符。

1 个答案:

答案 0 :(得分:1)

关于上下两层。

 int upperCasecount = s.Count(c => char.IsUpper(c));
 int lowerCaseCount = s.Count(c => char.IsLower(c));

这是特殊字符计数的情况。

 int numOfSpecialChar = s.Count(c => !char.IsLetterOrDigit(c));