“Walidacja RegexP dla hasła” Kod odpowiedzi

Walidacja RegexP dla hasła

r'^
  (?=.*[A-Z])       // should contain at least one upper case
  (?=.*[a-z])       // should contain at least one lower case
  (?=.*?[0-9])      // should contain at least one digit
  (?=.*?[!@#\$&*~]) // should contain at least one Special character
  .{8,}             // Must be at least 8 characters in length  
$
Difficult Dugong

Regex hasła

^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,}$
Mobile Star

hasło do regularności

^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.*[!@#\$%\^&\*])(?=.{8,})
DieOver

regrex dla hasła

"^(?=.*[a-z])(?=.*[A-Z])(?=.*\d)(?=.*[@$!%*?&])[A-Za-z\d@$!%*?&]{8,10}$"
RamNirmal0

Odpowiedzi podobne do “Walidacja RegexP dla hasła”

Pytania podobne do “Walidacja RegexP dla hasła”

Więcej pokrewnych odpowiedzi na “Walidacja RegexP dla hasła” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu