从NSString中提取子字符串

时间:2012-11-16 11:34:07

标签: iphone objective-c ios nsstring

我想从NSString中提取子字符串。怎么可能。

示例:字符串 abcdefwww.google.comabcdef

输出: www.google.com

在主字符串中,它没有预定义哪个网址来自,可能是google.com或yahoo.com等。

所以我必须在 www 中找到w的开始位置,并在 .com 中找到m的最后位置。

所以我的问题是如何在 www 中找到 w 的起始位置以及 m 的位置。 com ,所以我提取这部分

由于问题而编辑:

我们如何从这个字符串中提取www.mywebsite.co.uk asdfwww.mywebsite.co.ukasdfajsf

由于

4 个答案:

答案 0 :(得分:19)

来自字符串的子串如bellow

       - (NSString *)extractString:(NSString *)fullString toLookFor:(NSString *)lookFor skipForwardX:(NSInteger)skipForward toStopBefore:(NSString *)stopBefore 
    {

        NSRange firstRange = [fullString rangeOfString:lookFor];
        NSRange secondRange = [[fullString substringFromIndex:firstRange.location + skipForward] rangeOfString:stopBefore];
        NSRange finalRange = NSMakeRange(firstRange.location + skipForward, secondRange.location + [stopBefore length]);

        return [fullString substringWithRange:finalRange];
    }

使用下面的方法......

NSString *strTemp = [self extractString:@"abcdefwww.google.comabcdef" toLookFor:@"www" skipForwardX:0 toStopBefore:@".com"];
NSLog(@"\n\n Substring ==>> %@",strTemp);

有关更多信息,请参阅下面的链接..

help-needed-function-extract-string-string

答案 1 :(得分:8)

您可以使用以下代码获取子字符串

-(NSString*)stringBetweenString:(NSString*)start andString:(NSString *)end withstring:(NSString*)str
{
    NSScanner* scanner = [NSScanner scannerWithString:str];
    [scanner setCharactersToBeSkipped:nil];
    [scanner scanUpToString:start intoString:NULL];
    if ([scanner scanString:start intoString:NULL]) {
        NSString* result = nil;
        if ([scanner scanUpToString:end intoString:&result]) {
            return result;
        }
    }
    return nil;
}

要调用它,

NSString *cURL=[self stringBetweenString:@"www." andString:@".com" withstring:@"abcdefwww.google.comabcdef"];

NSString *cAudiolink=[NSString stringWithFormat:@"www.%@.com",cURL];

cAudiolink是结果字符串

答案 2 :(得分:2)

您可以使用正则表达式。

使用此类别:

@implementation NSString (MyRegex)

- (NSString *)firstMatchWithRegex:(NSString *)regex error:(NSError **)e {
    NSError *error = nil;
    NSRegularExpression *re = [NSRegularExpression regularExpressionWithPattern:regex options:NSRegularExpressionSearch error:&error];

    if(re == nil) {
        if(e) *e = error;
        return nil;
    }

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

    if([matches count] == 0) {            
        NSString *errorDescription = [NSString stringWithFormat:@"Can't find a match for regex: %@", regex];
        NSError *error = [NSError errorWithDomain:NSStringFromClass([self class]) code:0 userInfo:@{NSLocalizedDescriptionKey : errorDescription}];
        if(e) *e = error;
        return nil;
    }

    NSTextCheckingResult *match = [matches lastObject];
    NSRange matchRange = [match rangeAtIndex:1];
    return [self substringWithRange:matchRange];
}

@end

您可以致电:

[@"abcdefwww.google.comabcdef" firstMatchWithRegex:@"(www.*\\.com)" error:nil]

返回:

www.google.com

答案 3 :(得分:2)

我在google搜索后得到了问题的解决方案。我实现了下面的代码,它对我来说很好用

   NSString *finalURL;
   NSString *string=@"abcdefwww.yahoomail.comabcdef";

   NSRange range = [string rangeOfString:@"www"];


   NSString  *tempUrl=[string substringFromIndex:range.location];




   NSRange range2 = [tempUrl rangeOfString:@".com"];

   finalURL=[tempUrl substringWithRange:NSMakeRange(0, range2.location+4)];

   NSLog(@"your URL is %@",finalURL); //prints www.yahoomail.com