728x90
반응형
문제 :
프로그래머스 모바일은 개인정보 보호를 위해 고지서를 보낼 때 고객들의 전화번호의 일부를 가립니다.
전화번호가 문자열 phone_number로 주어졌을 때, 전화번호의 뒷 4자리를 제외한 나머지 숫자를 전부 *으로 가린 문자열을 리턴하는 함수, solution을 완성해주세요.
class Solution {
public String solution(String phone_number) {
int length=phone_number.length()-4;
return "*".repeat(length)+phone_number.substring(length,phone_number.length());
}
}
String 클래스의 반복 메서드인 repeat를 이용해서 자른 문자열과 더해줬다.
728x90
728x90
'Java' 카테고리의 다른 글
람다를 간단하게 써보자 (0) | 2021.06.13 |
---|---|
if,else or switch,case (0) | 2021.05.21 |
WebSocket으로 실시간 채팅 구현하기.(springboot) (19) | 2021.04.13 |
Could not initialize class org.codehaus.groovy.runtime.InvokerHelper (0) | 2021.03.12 |
NPE의 대처 방안 Optional (0) | 2021.03.01 |
댓글