[프로그래머스]특정한 문자를 대문자로 바꾸기

박예림·2023년 5월 25일
0

코테

목록 보기
120/132

class Solution {
    public String solution(String my_string, String alp) {
        return my_string.replaceAll(alp, alp.toUpperCase());
    }
}
profile
응애 나 아기개발자

0개의 댓글