Java - 대소문자 변환 & 구분없이 비교 (toUpperCase, toLowerCase, equalsIgnoreCase)

String 클래스는 문자열을 대문자로 변경하거나 소문자로 변경하는 메소드를 제공합니다. 즉, 문자열의 모든 문자를 대문자로 변경하거나, 모든 문자를 소문자로 변경할 수 있습니다.

toUpperCase()

toUpperCase()는 문자열을 모두 대문자로 변경합니다. upper case는 대문자라는 뜻입니다.

String str = "Hello World";
System.out.println(str.toUpperCase());

str = "hello world";
System.out.println(str.toUpperCase());

Output:

HELLO WORLD
HELLO WORLD

toLowerCase()

toLowerCase()는 문자열을 모두 대문자로 변경합니다. lower case는 소문자라는 뜻입니다.

String str = "Hello World";
System.out.println(str.toLowerCase());

str = "HELLO WORLD";
System.out.println(str.toLowerCase());

Output:

hello world
hello world

다른 언어의 대소문자 변경

위의 예제에서 toUpperCase()는 영어의 문자열을 모두 대문자로 변경해 주었습니다. 사실 이 메소드는 영어에 대해서 변경해주는 것이 아니라, Locale.getDefault()으로 리턴되는 언어에 대해서 대문자로 변경해주는 메소드입니다.

기본적으로 Locale.getDefault().getLanguage()가 english를 리턴하기 때문에 영어에 대해서 대문자로 변환하는 것처럼 보였습니다.

// String.java
public String toLowerCase() {
    return toLowerCase(Locale.getDefault());
}

하지만, 다음과 같이 Locale을 인자로 전달하면 다른 언어의 문자열도 모두 대문자로 변경하도록 구현할 수 있습니다.

// String.java
public String toUpperCase(Locale locale)

Turkish를 예로 들면, 다음과 같이 대문자로 변경할 수 있습니다.

Locale TURKISH = new Locale("tr");
System.out.println("\u0069".toUpperCase());
System.out.println("\u0069".toUpperCase(TURKISH));

Output:

I
İ

toLowerCase()의 경우도 동일하게 인자로 Locale을 전달할 수 있습니다. 위와 같이 적용하면 됩니다.

public String toLowerCase(Locale locale)

대소문자 구분 없이 비교

equals()는 대소문자를 구분하여 비교를 합니다. 반면에 equalsIgnoreCase()는 대소문자를 구분하지 않고 문자열 비교를 합니다.

String str = "Hello";
System.out.println("equals ? " + "hello".equals(str));
System.out.println("equalsIgnoreCase ? " + "hello".equalsIgnoreCase(str));

Output:

equals ? false
equalsIgnoreCase ? true

따라서, 대소문자 구분 없이 비교를 하려면 equalsIgnoreCase()를 사용하면 됩니다.

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha