728x90
https://school.programmers.co.kr/learn/courses/30/lessons/181876
문제)알파벳으로 이루어진 문자열 myString이 주어집니다. 모든 알파벳을 소문자로 변환하여 return 하는 solution 함수를 완성해 주세요.
풀이)
class Solution {
public String solution(String myString) {
String answer = myString.toLowerCase();
return answer;
}
}
.toLowerCase()는 대문자를 소문자로 변환한다.
String str = "Hello World";
String lowercaseStr = str.toLowerCase();
System.out.println(lowercaseStr);
728x90
'프로그래밍 > Java(자바)' 카테고리의 다른 글
[프로그래머스] 조건에 맞게 수열 변환하기(1) --java (0) | 2023.12.21 |
---|---|
[프로그래머스] 문자열을 정수로 변환하기 --java (0) | 2023.12.21 |
[프로그래머스] 두 수의 연산값 비교하기 -- java (0) | 2023.12.21 |
[프로그래머스] 더 크게 합치기 -- java Feat. String을 int로, int를 String으로 바꾸기 (0) | 2023.12.21 |
[프로그래머스] 문자 리스트를 문자열로 변환하기 -- java (0) | 2023.12.21 |