Skip to content

Instantly share code, notes, and snippets.

@ylem
Last active August 29, 2015 14:13
Show Gist options
  • Save ylem/528c3deb2abcdbf14696 to your computer and use it in GitHub Desktop.
Save ylem/528c3deb2abcdbf14696 to your computer and use it in GitHub Desktop.
Calculate word count
NSString *string = @"中华人民共和国万岁 万岁 万万岁";
NSCountedSet *countedSet = [NSCountedSet new];
[string enumerateSubstringsInRange:NSMakeRange(0, [string length])
options:NSStringEnumerationByComposedCharacterSequences | NSStringEnumerationLocalized
usingBlock:^(NSString *substring, NSRange substringRange, NSRange enclosingRange, BOOL *stop){
_sumText++;
[countedSet addObject:substring];
}];
NSLog(@"%lu", _sumText);
NSLog(@"%@", countedSet);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment