프로그래머스 - 소문자로 바꾸기

JJJ·2023년 4월 20일
0
post-custom-banner

소문자로 바꾸기

문제 설명

알파벳으로 이루어진 문자열 myString이 주어집니다. 모든 알파벳을 소문자로 변환하여 return 하는 solution 함수를 완성해 주세요.

class Solution {
    public String solution(String myString) {
        String answer = "";
            
        answer=myString.toLowerCase();
        
        return answer;
    }
}

문제풀이

1)toLowerCase()
:JDK에서 제공하는 String클래스 사용
toLowerCase(): 모든 문자열을 소문자로 변경
toUpperCase(): 모든 문자열을 대문자로 변경

profile
Think Talk Act
post-custom-banner

0개의 댓글