type | Method | Description |
boolean | isDigit(char ch) | Determines if the specified character is a digit. 숫자면 true, 아니면 false 반환 |
boolean | isAlphabetic(int codePoint) | Determines if the specified character (Unicode code point) is an alphabet. |
boolean | isLetter(char ch) | Determines if the specified character is a letter. 알파벳(영문 알파벳 대소문자) 또는 다른 언어의 문자인 경우에도 true를 반환, 숫자나 특수 문자, 공백이면 false |
char | toLowerCase(char ch) | Converts the character argument to lowercase using case mapping information from the UnicodeData file. |
char | toUpperCase(char ch) | Converts the character (Unicode code point) argument to uppercase using case mapping information from the UnicodeData file. |
728x90
'공부 > 기타' 카테고리의 다른 글
비트 연산자 사용하기 - 2편 (NOT 연산의 과정, 5의 NOT이 -6인 이유) (0) | 2024.01.22 |
---|---|
비트 연산자 사용하기 - 1편 (0) | 2024.01.22 |
Scanner 로 char 형 입력하기 - JAVA (0) | 2022.12.25 |
반복문 없이 2차원(다차원) 배열 출력하기 ( Arrays.deepToString(arr))- JAVA (0) | 2022.12.22 |
반복문 없이 배열 출력하기 ( Arrays.toString(arr))- JAVA (0) | 2022.12.22 |