密碼提示強弱的正規表示式

johnturingwu發表於2019-02-16
  var = ["弱","中","強","超強"];
    function checkStrong(val) {
                var modes = 0;
                if (val.length < 6) return 0;
                if (/d/.test(val)) modes++; //數字
                if (/[a-z]/.test(val)) modes++; //小寫
                if (/[A-Z]/.test(val)) modes++; //大寫  
                if (/W/.test(val)) modes++; //特殊字元
                if (val.length > 12) return 4;
                return modes;
            }

相關文章