“Редж для имени пользователя” Ответ

Редакция имени пользователя

^(?=[a-zA-Z0-9._]{8,20}$)(?!.*[_.]{2})[^_.].*[^_.]$
Determined Deer

Редж для имени пользователя

# works in most newer browsers
^(?=.{8,20}$)(?![_.])(?!.*[_.]{2})[a-zA-Z0-9._]+(?<![_.])$
 └─────┬────┘└───┬──┘└─────┬─────┘└─────┬─────┘ └───┬───┘
       │         │         │            │           no _ or . at the end
       │         │         │            │
       │         │         │            allowed characters
       │         │         │
       │         │         no __ or _. or ._ or .. inside
       │         │
       │         no _ or . at the beginning
       │
       username is 8-20 characters long

# works in all browsers, but does the same as the above RegEx
^(?=[a-zA-Z0-9._]{8,20}$)(?!.*[_.]{2})[^_.].*[^_.]$
Anxious Alligator

Редж для имени пользователя

let username = '';
username = username.replace(/\s/g,'_');
username = username.replace(/\-/g,'.');
username = username.match(/[a-zA-Z0-9\.\s]+/g).join('_');
JulesG10

Редж для хорошего имени пользователя

let userCheck = /^[a-z][a-z]+\d*$|^[a-z]\d\d+$/i;
Omatsola Eyeoyibo

Ответы похожие на “Редж для имени пользователя”

Вопросы похожие на “Редж для имени пользователя”

Смотреть популярные ответы по языку

Смотреть другие языки программирования