iOS 中的电子邮件验证
iPhone 编程中的电子邮件验证检查可以使用 RegexKitLite 库 (iOS2.0)、NSPredicate
(iOS 3.0 及以上版本)和 NSRegularExpression
(iOS 4.0) 来完成。但任何人都可以说出其中一种相对于另一种的优势是什么,以及哪一种是上述三种选择中最好的验证选项。
Email validation checking in iPhone programming can be done using RegexKitLite library (iOS2.0), NSPredicate
(iOS 3.0 onwards) and NSRegularExpression
(iOS 4.0). But can anybody state what is the advantage of one over the other and which is the best validating option of the three stated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
我总是使用 NSPredicate...并且它工作正常
i am using NSPredicate always...and it is working fine
我的答案是此链接中提供的优秀解决方案的重构答案。
My answer is a refactored one from the excellent solution provided in this link..
我认为最好的选择,毫无疑问,就是 Mailgun 是免费的电子邮件验证 API。我为它编写了一个简单的 Objective-C 包装器:
https://github.com/benzguo/BZGMailgunEmailValidation
如果出现连接错误,验证器将回退到基于正则表达式的验证。
如果您仍想使用正则表达式验证电子邮件,请查看:
http://www.regular- Expressions.info/email.html
https://wiki.mozilla.org/TLD_List
I think the best option, hands down, is Mailgun's free email validation API. I've written a simple objective-C wrapper for it:
https://github.com/benzguo/BZGMailgunEmailValidation
If there's a connection error, the validator falls back to regex-based validation.
If you still want to validate emails using a regular expression, check out:
http://www.regular-expressions.info/email.html
https://wiki.mozilla.org/TLD_List
我认为这很大程度上取决于应用程序支持的最低 iOS 版本,如果有内置类可以完成这项工作,请使用它。正如您所暗示的,您将使用其他一些第三方框架以一致的方式支持旧版本。
现在,我会使用
NSPredicate
或NSRegularExpression
,两者都从 iOS 4 开始受支持,如果不是的话,这很可能是新 iOS 应用程序的最低支持版本iOS 5。有用的帖子。
I think it largely depends on the minimum version of iOS an App will support, and if there's a built-in class that'll do the job, use it. As you hinted, you'd use some other 3rd-party framework to support older versions in a consistent way.
Right now, I'd use
NSPredicate
orNSRegularExpression
, both are supported from iOS 4 onwards, which is quite likely to be the minimum supported version for new iOS Apps, if not iOS 5.Useful post.
完成电子邮件验证。试试这个
complete email validation. try this
如何在 ios 中创建电子邮件 ID 和密码验证
快点,轻松进行简单的电子邮件 ID 验证,检查代码是否有用。
所以,我希望对你有帮助。
谢谢...
how to create email id and password validation in ios
Hurry up, Easy for simple Validation of Email id check that after code useful.
so,I Hope for helpful you.
Thanks...