728x90
반응형
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'
}
728x90
반응형
'JAVA' 카테고리의 다른 글
[JAVA] DateTimeFormatter (0) | 2024.06.22 |
---|---|
[JAVA] StringBuilder.deleteCharAt() (0) | 2024.06.16 |
[JAVA] StringBuilder에 null을 append 하는 경우 (0) | 2024.06.13 |
[JAVA] 문자열 합치기 방법 비교 (2) | 2024.06.12 |
[JAVA] String.join() (0) | 2024.06.01 |