public class 신규_아이디_추천 {
public String solution(String new_id){
String answer ="";
String step1 = new_id.toLowerCase();
char[] step1_arr = step1.toCharArray();
StringBuilder sb = new StringBuilder();
for(char c : step1_arr){
if((c >= 'a' && c <= 'z') || (c >= '0' && c <= '9') || c == '_' || c =='-' || c == '.'){
sb.append(c);
}
}
String step3 = sb.toString().replace("..", ".");
while(step3.contains("..")){
step3 = step3.replace("..",".");
}
String step4 = step3;
if(step4.length()>0){
if (step4.charAt(0) == '.'){
step4 = step4.substring(1,step4.length());
}
}
if(step4.length() >0){
if(step4.charAt(step4.length()-1) == '.'){
step4 = step4.substring(0, step4.length() - 1);
}
}
String step5 = step4;
if(step5.equals("")){
step5 = "a";
}
String step6 = step5;
if(step6.length() >= 16){
step6 = step6.substring(0, 15);
if(step6.charAt(step6.length() -1) == '.'){
step6 = step6.substring(0, step6.length() - 1);
}
}
StringBuilder step7 = new StringBuilder(step6);
if(step7.length() <= 2){
char last = step7.charAt(step7.length() - 1);
while(step7.length() < 3){
step7.append(last);
}
}
answer = step7.toString();
System.out.println(answer);
return answer;
}
public static void main(String[] args) {
String new_id = "abcdefghijklmn.p";
신규_아이디_추천 sol = new 신규_아이디_추천();
sol.solution(new_id);
}
}
주의할 점
- subString()을 할때 항상 String타입 반환해주기!