반응형

보통 스트링 문자열을 비교할때 .equals를 쓰는데 

 

.equalsIgnoreCase();

요런 녀석도 있다.

얜 대소문자를 구분하지않는다.

String str1 = "app";
String str2 = "APP";

"app".equalsIgnoreCase(str2) //같음
"APP".equalsIgnoreCase(str1) //같음

"app".equals(str2); //다름
"APP".equals(str1); //다름

 

 

728x90

+ Recent posts