일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- 자바스크립트
- html
- Visual Studio Code
- CMD
- string
- 배열
- Java
- 테이블
- list
- Array
- Button
- 자바
- Maven
- vscode
- 이클립스
- js
- IntelliJ
- Eclipse
- javascript
- Files
- json
- windows
- 문자열
- date
- input
- CSS
- 이탈리아
- 인텔리제이
- ArrayList
- table
- Today
- Total
목록equals (2)
어제 오늘 내일
대소문자 구분없이 문자열 비교하기 equalsIgnoreCase() compareToIgnoreCase() 대문자로 변환해서 비교하기 1. equalsIgnoreCase() 코드 public class StringEqaulsIgnoreCase { public static void main(String[] args) { String str1 = "hello"; String str2 = "Hello"; // 대소문자 상관없이 비교하기 if (str1.equalsIgnoreCase(str2)) { System.out.println("Same"); // Same } } } 결과 Same equalsignoreCase() 메소드는 대소문자 구분없이 문자열을 비교하고, 같으면 true를 리턴합니다. 2. compa..
이번에는 앞에서 소개한 32bit로 인코딩된 문자를Java 코드를 통해 확인해 보도록 하겠다.([JavaAPI] String 클래스 메소드와 예제(2) - Unicode 처리(1) 참조) public boolean equals(Object anObject) Returns the length of this string. The length is equal to the number of Unicode code units in the string.String 클래스의 length() 메소드는 string의 길이를 리턴한다. 정확히는 unicode code unit의 숫자를 리턴한다. int ch32[] = {0x1F0A1}; // 🂡 String st32 = new String(ch32, 0, 1); int ..