web-dev-qa-db-fra.com

Comment séparer une chaîne par un espace en utilisant Objective-C?

Supposons que j'ai une chaîne comme celle-ci:

hello world       this may     have lots   of sp:ace or little      space

Je voudrais séparer cette chaîne de ceci:

@"hello", @"world", @"this", @"may", @"have", @"lots", @"of", @"sp:ace", @"or", @"little", @"space"

Je vous remercie.

48
user448236
NSString *aString = @"hello world       this may     have lots   of sp:ace or little      space";
NSArray *array = [aString componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
array = [array filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"SELF != ''"]];
80
vikingosegundo

Je suggérerais une approche en deux étapes:

NSArray *wordsAndEmptyStrings = [yourLongString componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];
NSArray *words = [wordsAndEmptyStrings filteredArrayUsingPredicate:[NSPredicate predicateWithFormat:@"length > 0"]];
22
danyowdee

Cela a fonctionné pour moi

NSString * str = @"Hi Hello How Are You ?";
NSArray * arr = [str componentsSeparatedByString:@" "];
NSLog(@"Array values are : %@",arr);
21
Mohit
NSString * mainString = @"Today is your day";
NSArray * array = [mainString componentsSeparatedByString:@" "];
NSLog(@"Expected string is : %@",array);
5
Vaibhav Shiledar

C'est très facile de le faire avec des blocs, essayez quelque chose comme ceci:

NSString* s = @"hello world       this may     have lots   of space or little      space";
NSMutableArray* ar = [NSMutableArray array];
[s enumerateSubstringsInRange:NSMakeRange(0, [s length]) options:NSStringEnumerationByWords usingBlock:^(NSString* Word, NSRange wordRange, NSRange enclosingRange, BOOL* stop){
    [ar addObject:Word];
}];
5
Nyx0uf