앞글자 대문자로 바꾸기

yongju·2023년 6월 26일
0

JAVA

목록 보기
3/5
post-thumbnail

문자열.toUpperCase()
문자열.replace(기존문자, 바꿀문자)

class Solution {

    public String solution(String my_string, String alp) {
        String answer = my_string.replace(alp, alp.toUpperCase());
        return answer;
    }

    public static void main(String[] args) {
        Solution solution = new Solution();
        String s = solution.solution("programmers", "p");
        System.out.println(s);
    }
}
profile
AI dev

0개의 댓글