import org.apache.commons.lang3.StringUtils;String str = "Hello World";str = StringUtils.chop(str);System.out.println(str); // ์ถ๋ ฅ: "Hello Worl" ๋์ ํ๋ฌธ์ ์ ๊ฑฐํ๊ธฐ Apache Commons Lang ๋ผ์ด๋ธ๋ฌ๋ฆฌ์ StringUtils ํด๋์ค๋ฅผ ์ฌ์ฉํ๋ฉด ๋ ๊ฐ๋จํ๊ฒ ๋ฌธ์์ด์ ์กฐ์ํ ์ ์์ต๋๋ค. ์ด ๋ผ์ด๋ธ๋ฌ๋ฆฌ๋ฅผ ์ฌ์ฉํ๋ ค๋ฉด ๋จผ์ ์์กด์ฑ์ ์ถ๊ฐํด์ผ ํฉ๋๋ค. dependencies { implementation 'org.apache.commons:commons-lang3:3.12.0'}