본문 바로가기

Algorithm/Programers - C++

[프로그래머스] 핸드폰 번호 가리기 / replace

문제

프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다.
전화번호가 문자열 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 개로 치환

 

 

 

더 다양한 형태는 밑 링크를 통해 확인할 수 있다


https://modoocode.com/250

 

C++ 레퍼런스 - string 의 replace 함수

 

modoocode.com