본문 바로가기
카테고리 없음

문자열 대소문자 변경 & 비교 (toUpperCase , toLowerCase)

by sftt 2023. 12. 7.

문자열 대소문자 변경 ( toUpperCase(),  toLowerCase())

toUpperCase() 함수

toUpperCase() 함수는 문자열의 모든 문자를 대문자로 변환합니다.

const str = "hello world";
const uppercaseStr = str.toUpperCase();

console.log(uppercaseStr); // "HELLO WORLD"

toLowerCase() 함수

toLowerCase() 함수는 문자열의 모든 문자를 소문자로 변환합니다.

const str = "HELLO WORLD";
const lowercaseStr = str.toLowerCase();

console.log(lowercaseStr); // "hello world"

문자열 대소문자 변경의 활용

문자열 대소문자 변경은 다양한 상황에서 유용하게 사용될 수 있습니다. 몇 가지 예시를 살펴보겠습니다.

const str = "Hello World";

// 대소문자 비교
if (str === "hello world") {
  console.log("The strings are the same.");
} else {
  console.log("The strings are different.");
}

// 대문자로 변환하여 비교
if (str.toUpperCase() === "HELLO WORLD") {
  console.log("The strings are the same.");
} else {
  console.log("The strings are different.");
}

// 소문자로 변환하여 비교
if (str.toLowerCase() === "hello world") {
  console.log("The strings are the same.");
} else {
  console.log("The strings are different.");
}

위의 예시에서는 toUpperCase()toLowerCase()를 사용하여 대문자 또는 소문자로 변환하여 비교하였습니다. 이를 통해 문자열의 대소문자가 같은지 체크할 수 있습니다.

댓글