function solution(new_id) {
let string = '';
string = new_id.toLowerCase()
.replace(/[^a-z0-9\.\-\_]/gi,'')
.replace(/\.+/g,'.')
.replace(/^\.+|\.+$/g,'');
string = string? string.substr(0, 15) : 'a';
string = string.replace(/\.+$/g,'');
while(string.length <= 2) {
string = string + string.substr(string.length-1);
}
return string;
}
function solution(new_id) {
const answer = new_id
.toLowerCase()
.replace(/[^\w-_.]/g, '')
.replace(/\.+/g, '.')
.replace(/^\.|\.$/g, '')
.replace(/^$/, 'a')
.slice(0, 15).replace(/\.$/, '');
const len = answer.length;
return len > 2 ? answer : answer + answer.charAt(len - 1).repeat(3 - len);
}