๋ฐ์ํ
๐Error Log
๋ฐ์ผ๋ฆฌ์ฝ๋ฉ ๋ฌธ์ ๋ฅผ ํ๋์ค if(element.isBlank())๋ฅผ ์ฌ์ฉํ๋ค. ๋ก์ปฌ์์๋ ์ ์์ ์ผ๋ก ๋์๊ฐ์ง๋ง ์ฝํ๋ฆฟ์์๋ ์๋ฌ๊ฐ ๋ฐ์ํ๋ค. ์ฐพ์๋ณด๋ ์๋ฐ ๋ฒ์ ๋ฌธ์ ์๋ค..! isBlank()๊ฐ ์๋ฐ11๋ถํฐ ์ฌ์ฉ๊ฐ๋ฅํ๊ฒ๋๋ฌธ...
isBlank() : ์ฃผ์ด์ง ๋ฌธ์์ด์ด ๋น๋ฌธ์์ด์ด๊ฑฐ๋, ๊ณต๋ฐฑ(" ")์ ๊ฐ๋ ๋ฌธ์์ด์ด๋ฉด true, ์๋๋ฉด false
isEmpty() : ์ฃผ์ด์ง ๋ฌธ์์ด์ด ๋น๋ฌธ์์ด์ด๋ฉด true, ์๋๋ฉด false.
String str1 = "strstr";
String str2 = " ";
String str3 = "";
System.out.printf("empty? %b, blank? %b\n", str1.isEmpty(), str1.isBlank());
System.out.printf("empty? %b, slank? %b\n", str2.isEmpty(), str2.isBlank());
System.out.printf("empty? %b, blank? %b", str3.isEmpty(), str3.isBlank());
str1 : empty? false,blank? false
str2 : empty? false,blank? true
str3 : empty? true, blank? true
๋ฐ์ํ