[Java] 문자열의 공백 제거하기(trim, strip, replace)
1. trim() 앞, 뒤 공백을 제거해줍니다. '\u0020' 이하의 공백들만 제거 public final class String implements java.io.Serializable, Comparable, CharSequence { public String trim() { String ret = isLatin1() ? StringLatin1.trim(value) : StringUTF16.trim(value); return ret == null ? this : ret; } } [예시] String test = " An apple is delicious "; System.out.println("'" + test + "'"); // ' An apple is delicious ' System.out.pr..