gpt4 book ai didi

ios - NSDataDetector 电话号码

转载 作者:行者123 更新时间:2023-11-29 11:21:42 25 4
gpt4 key购买 nike

我正在使用 NSDataDetector 来解析文本并检索数字。这是我的代码:

 NSDataDetector *detector = [NSDataDetector dataDetectorWithTypes:NSTextCheckingTypePhoneNumber
error:&error];

NSArray *matches = [detector matchesInString:locationAndTitle options:0 range:NSMakeRange(0,[locationAndTitle length])];

for (NSTextCheckingResult *match in matches) {


if ([match resultType] == NSTextCheckingTypePhoneNumber) {

self.theNumber = [match phoneNumber];
}
}

问题在于它有时会返回如下内容:

电话:9729957777或者9729957777x3547634

我不希望它出现并且删除它会比使用正则表达式代码检索数字更难。你知道如何只检索号码吗?

最佳答案

就我个人而言,我只会在字符串上使用 -substringWithRange: 来删除过去的所有内容,包括“x”字符:

NSString * myPhoneNum = @"9729957777x3547634";
NSRange r = [myPhoneNum rangeOfString:@"x"];
if (r.location != NSNotFound) {
myPhoneNum = [myPhoneNum substringWithRange:NSMakeRange(0, r.location)];
}
NSLog(@"Fixed number: %@", myPhoneNum);

知道 x3547634 的来源吗?

关于ios - NSDataDetector 电话号码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6803608/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com