 
  Data Structure Data Structure
 Networking Networking
 RDBMS RDBMS
 Operating System Operating System
 Java Java
 MS Excel MS Excel
 iOS iOS
 HTML HTML
 CSS CSS
 Android Android
 Python Python
 C Programming C Programming
 C++ C++
 C# C#
 MongoDB MongoDB
 MySQL MySQL
 Javascript Javascript
 PHP PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# program to count upper and lower case characters in a given string
To count uppercase characters in a string, check the following condition −
myStr[i]>='A' && myStr[i]<='Z'
To count lower case characters in a string, check the following condition −
myStr[i]>='a' && myStr[i]<='z'
Example
You can try to run the following code to count upper and lower case characters in a given string.
using System; public class Demo {    public static void Main() {       string myStr;       int i, len, lower_case, upper_case;       myStr = "Hello";       Console.Write("String: "+myStr);       lower_case = 0;       upper_case = 0;       len = myStr.Length;       for(i=0; i<len; i++) {          if(myStr[i]>='a' && myStr[i]<='z') {             lower_case++;          } else if(myStr[i]>='A' && myStr[i]<='Z') {             upper_case++;          }       }       Console.Write("
Characters in lowecase: {0}
", lower_case);       Console.Write("Characters in uppercase: {0}
", upper_case);    } }  Output
String: Hello Characters in lowecase: 4 Characters in uppercase: 1
Advertisements
 