문제
프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다.
전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요.
풀이
#include <string>
#include <vector>
using namespace std;
string solution(string phone_number) {
string answer = phone_number;
answer.replace(answer.begin(), answer.end()-4, answer.size()-4, '*');
return answer;
}
replace
replace는 용도에 따라 다양한 형태의 오버 로딩이 존재한다.
-str.replace(pos, count, str2) : pos부터 count개의 문자들을 str로 치환
-str.replace(first, last, str2) : first부터 last전까지의 문자들을 str로 치환
-str.replace(pos, count, count2, ch) : pos부터 count개의 문자를 ch문자 count2개로 치환
-str.replace(fist, last, count2, ch) : first부터last까지의 문자를 ch 문자 count2 개로 치환
더 다양한 형태는 밑 링크를 통해 확인할 수 있다
'Algorithm > Programers - C++' 카테고리의 다른 글
[프로그래머스] 멀쩡한 사각형 / 최대공약수, 유클리드 호재법 (0) | 2022.03.15 |
---|---|
[프로그래머스] 하샤드 수 (0) | 2022.03.03 |
[프로그래머스] 콜라츠 추측 (0) | 2022.02.27 |
[프로그래머스] 피보나치 수 / 재귀함수, 반복문 (0) | 2022.02.27 |
[프로그래머스] 행렬의 덧셈 (0) | 2022.02.27 |