[프로그래머스] 핸드폰 번호 가리기 (JAVA)

강민범·2023년 1월 31일
0

문제 설명

프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다.
전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요.

제한 조건

phone_number는 길이 4 이상, 20이하인 문자열입니다.

입출력 예

phone_number return
"01033334444" "***4444"
"027778888" "*8888"

풀이

1.phone_number의 길이만큼 for문을 돌려준다.
2.만약 phone_number의 길이에서 i를 뺐을때 마지막 4자리가 남은것이므로 4보다 작거나 같을때는 원래 번호가 나오게한다.
3.작거나 같지않다면 result에 charAt함수를 이용해서 글자를 붙여주고 그 글자를 '*'로 바꿔준다.

class Solution {
    public String solution(String phone_number) {
        String result = "";
        for(int i=0; i<phone_number.length(); i++){
            if(phone_number.length() - i <= 4){
                result += phone_number.charAt(i);
            }else{
                result += phone_number.charAt(i);
                result = result.replace(result.charAt(i),'*');
            }
        }
        return result;
    }
}
profile
개발자 성장일기

0개의 댓글