Created
September 29, 2022 04:06
-
-
Save hoangbits/66100ad3027d27f235046bcb3a4f35aa to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Arrays; | |
import java.util.List; | |
import java.util.stream.Collectors; | |
class Main { | |
public static void main(String[] args) { | |
String str = "gEeks"; | |
// String str = "Geeks"; | |
Boolean isNameUpper = Character.isUpperCase(str.charAt(1)); | |
System.out.println(isNameUpper); | |
Boolean isNameUpper2 = Character.isUpperCase('E'); | |
System.out.println(isNameUpper2); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment