프로그래머스 Lv.0 특정한 문자를 대문자로 바꾸기
문제
해결과정
- 문자열을 변경하는 함수 replace 활용
- 대문자로 변경하는 toUpperCase() 사용
// 자바 source
class Solution {
public String solution(String my_string, String alp) {
String answer = "";
answer = my_string.replace(alp, alp.toUpperCase());
return answer;
}
}