SeouliteLab

[Java/자바] 문자열에서 콤마(,) 제거하는 방법 본문

프로그래밍

[Java/자바] 문자열에서 콤마(,) 제거하는 방법

Seoulite Lab 2024. 3. 7. 09:31

Java에서는 문자열에서 콤마(,)를 제거하는 다양한 방법을 제공합니다. 이 블로그 포스트에서는 Java에서 문자열에서 콤마를 제거하는 여러 가지 방법을 설명하고, 각 방법의 예제를 제공하겠습니다.

예제 1: String 클래스의 replaceAll() 메서드 사용

String textWithCommas = "apple,banana,orange";
String textWithoutCommas = textWithCommas.replaceAll(",", "");
System.out.println(textWithoutCommas);

첫 번째 예제에서는 String 클래스의 replaceAll() 메서드를 사용하여 문자열에서 콤마를 빈 문자열로 대체하여 콤마를 제거합니다.

예제 2: StringBuilder를 사용하여 콤마 제거

String textWithCommas = "apple,banana,orange";
StringBuilder sb = new StringBuilder();
for (char c : textWithCommas.toCharArray()) {
    if (c != ',') {
        sb.append(c);
    }
}
String textWithoutCommas = sb.toString();
System.out.println(textWithoutCommas);

두 번째 예제에서는 StringBuilder를 사용하여 문자열을 순회하면서 콤마를 제거합니다.