美文网首页
Swift 密码判断

Swift 密码判断

作者: 独孤伊人_xie | 来源:发表于2019-06-06 10:28 被阅读0次

    最少有一个大写和小写字母;
    最少有一个数字;
    最少八个字符;

    func isPassWord(string: String) -> Bool {
            let regex = "^(?=.*\\d)(?=.*[a-z])(?=.*[A-Z])[a-zA-Z0-9]{8,}$"
            let allRegex : NSPredicate = NSPredicate(format: "SELF MATCHES %@", regex)
            if allRegex.evaluate(with: string) {
                return true
            }
            return false
        }
    

    相关文章

      网友评论

          本文标题:Swift 密码判断

          本文链接:https://www.haomeiwen.com/subject/kqsyxctx.html