码迷,mamicode.com
首页 > 编程语言 > 详细

swift 密码由6-16数字和字母组合组成

时间:2017-11-27 16:46:02      阅读:250      评论:0      收藏:0      [点我收藏+]

标签:for   test   密码   func   pwd   round   ace   组成   ret   

class func isPassword(pasword : String) -> Bool {

        let pwd =  "^(?![0-9]+$)(?![a-zA-Z]+$)[0-9A-Za-z]{6,16}$"

        let regextestpwd = NSPredicate(format: "SELF MATCHES %@",pwd)

        if (regextestpwd.evaluate(with: pasword) == true) {

            return true

        }else{

            return false

        }

    }

swift 密码由6-16数字和字母组合组成

标签:for   test   密码   func   pwd   round   ace   组成   ret   

原文地址:http://www.cnblogs.com/qizhuo/p/7904262.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!