web-dev-qa-db-fra.com

Trouver tous les emplacements de la sous-chaîne dans NSString (pas seulement la première)

Une sous-chaîne apparaît plusieurs fois dans une chaîne. J'utilise rangeOfString, mais il semble qu'il ne puisse trouver que le premier emplacement. Comment trouver tous les emplacements de la sous-chaîne?

NSString *subString1 = @"</content>";
NSString *subString2 = @"--\n";
NSRange range1 = [newresults rangeOfString:subString1];
NSRange range2 = [newresults rangeOfString:subString2];
int location1 = range1.location;
int location2 = range2.location;
NSLog(@"%i",location1);
NSLog(@"%i",location2);
32
forest

Vous pouvez utiliser rangeOfString:options:range: et définir le troisième argument comme étant au-delà de la plage de la première occurrence. Par exemple, vous pouvez faire quelque chose comme ceci:

NSRange searchRange = NSMakeRange(0,string.length);
NSRange foundRange;
while (searchRange.location < string.length) {
    searchRange.length = string.length-searchRange.location;
    foundRange = [string rangeOfString:substring options:nil range:searchRange];
    if (foundRange.location != NSNotFound) {
        // found an occurrence of the substring! do stuff here
        searchRange.location = foundRange.location+foundRange.length;
    } else {
        // no more substring to find
        break;
    }
}
77
PengOne

Ceci est ma solution. En gros, l'algorithme parcourt la chaîne à la recherche de correspondances de sous-chaîne et renvoie ces correspondances dans un tableau.

Etant donné que NSRange est une structure, il ne peut pas être ajouté directement au tableau. En utilisant NSValue , je peux encoder la correspondance en premier, puis l’ajouter au tableau. Pour récupérer la plage, j’ai ensuite décodé le NSValue objet en un NSRange .

#import <Foundation/Foundation.h>

NSRange makeRangeFromIndex(NSUInteger index, NSUInteger length) {
    return NSMakeRange(index, length - index);
}

NSArray<NSValue *> * allLocationsOfStringMatchingSubstring(NSString *text, NSString *pattern) {
    NSMutableArray *matchingRanges = [NSMutableArray new];
    NSUInteger textLength = text.length;
    NSRange match = makeRangeFromIndex(0, textLength);

    while(match.location != NSNotFound) {
        match = [text rangeOfString:pattern options:0L range:match];
        if (match.location != NSNotFound) {
            NSValue *value = [NSValue value:&match withObjCType:@encode(NSRange)];
            [matchingRanges addObject:value];
            match = makeRangeFromIndex(match.location + 1, textLength);
        }
    }

    return [matchingRanges copy];
}

int main(int argc, const char * argv[]) {
    @autoreleasepool {
        NSString *text = @"TATACCATGGGCCATCATCATCATCATCATCATCATCATCATCACAG";
        NSString *pattern = @"CAT";
        NSArray<NSValue *> *matches = allLocationsOfStringMatchingSubstring(text, pattern);

        NSLog(@"Text: %@", text);
        NSLog(@"Pattern: %@", pattern);
        NSLog(@"Number of matches found: %li", matches.count);

        [matches enumerateObjectsUsingBlock:^(NSValue *obj, NSUInteger idx, BOOL *stop) {
            NSRange match;
            [obj getValue:&match];
            NSLog(@"   Match found at index: %li", match.location);
        }];
    }
    return 0;
}
2
titusmagnus

Voici une version dans Swift 2.2 de la réponse de PengOne avec les contributions de kevinlawler et Gibtang

Remarque: chaîne et sous-chaîne sont du type NSString.

let fullStringLength = (string as String).characters.count
var searchRange = NSMakeRange(0, fullStringLength)
while searchRange.location < fullStringLength {
    searchRange.length = fullStringLength - searchRange.location
    let foundRange = string.rangeOfString(substring as String, options: .CaseInsensitiveSearch, range: searchRange)
    if foundRange.location != NSNotFound {
        // found an occurrence of the substring! do stuff here
        searchRange.location = foundRange.location + 1
    } else {
        // no more strings to find
        break
    }
}
1
bwait

Passer nil à [string rangeOfString: options de sous-chaîne: nil range: searchRange]; affiche un avertissement. 

Pour se débarrasser de l'avertissement, mettez une enum de ce groupe 

enum {
   NSCaseInsensitiveSearch = 1,
   NSLiteralSearch = 2,
   NSBackwardsSearch = 4,
   NSAnchoredSearch = 8,
   NSNumericSearch = 64,
   NSDiacriticInsensitiveSearch = 128,
   NSWidthInsensitiveSearch = 256,
   NSForcedOrderingSearch = 512,
   NSRegularExpressionSearch = 1024
};

_ { https://developer.Apple.com/library/ios/documentation/Cocoa/Reference/Foundation/Classes/NSString_Class/index.html#//Apple_ref/doc/constant_group/Search_and_Comparison_Options }

1
Gibtang

Swift 3.0

Trouver tous les emplacements de la sous-chaînei

let text = "This is the text and i want to replace something"
let mutableAttributedString = NSMutableAttributedString(string: text)

var searchRange = NSRange(location: 0, length: text.characters.count)
var foundRange = NSRange()
while searchRange.location < text.characters.count {
    searchRange.length = text.characters.count - searchRange.location
    foundRange = (text as NSString).range(of: "i", options: NSString.CompareOptions.caseInsensitive, range: searchRange)
    if foundRange.location != NSNotFound {
        // found an occurrence of the substring! do stuff here
        searchRange.location = foundRange.location + foundRange.length
        mutableAttributedString.addAttribute(NSForegroundColorAttributeName, value: UIColor.red, range: foundRange)
    }
    else {
        // no more substring to find
        break
    }
}

//Apply
textLabel.attributedText = mutableAttributedString;

Et cette sortie

 enter image description here

0
Abhishek Jain