check if char is lower case

Solutions on MaxInterview for check if char is lower case by the best coders in the world

showing results for - "check if char is lower case"
Mazie
27 Jan 2018
1//Check if character is lower case
2if( Character.isLowerCase(  char  ) )
3{
4	
5}
6else
7{
8
9}
10
11//Check if character is upper case
12if( Character.isUpperCase(  char  ) )
13{
14	
15}
16else
17{
18
19}