Iphone:NSPredicate 用于检查 id

发布于 10-03 11:05 字数 144 浏览 3 评论 0原文

我必须检查 ID 是否有效才能在系统中注册用户。为了做到这一点,我一直在阅读有关 NSPredicate 类的内容。

但是,我不知道如何构建下一个模式:

有效的 id 必须由 8 个数字和最后一个字母组成。有人能帮我吗?

谢谢

i have to check if an id is valid to register an user in the system. I have been reading about the class NSPredicate in order to do this.

However, i don't know how to build the next pattern:

A valid id has to be composed by 8 numbers and one final letter. Can anyone help me with that?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

听不够的曲调2024-10-10 11:05:56

试试这个(未经测试):

NSString *stringID = ...; // get the id
NSString *regex = @"[0-9]{8}[A-Za-z]";
NSPredicate *rp = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", regex];
if ([rp evaluateWithObject:stringID]) {
  // ID is valid!!
} else {
  // ID is not valid.
}

Try this out (untested):

NSString *stringID = ...; // get the id
NSString *regex = @"[0-9]{8}[A-Za-z]";
NSPredicate *rp = [NSPredicate predicateWithFormat:@"SELF MATCHES %@", regex];
if ([rp evaluateWithObject:stringID]) {
  // ID is valid!!
} else {
  // ID is not valid.
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文