[프로그래머스 | C# | Lv.0] 특정한 문자를 대문자로 바꾸기

728x90

https://school.programmers.co.kr/learn/courses/30/lessons/181873

 

 

📝 나의 풀이

using System;

public class Solution {
    public string solution(string my_string, string alp) {
        string answer = my_string.Replace(alp, alp.ToUpper());        
        return answer;
    }
}

 

728x90