vote up 2 vote down star
1

I have an NSString and would like to get the number of occurrences of a particular character.

I need to do this for quite a few characters, so it would be nice for it to be quick.

In case it makes any difference, it's actually an NSMutableString, and the characters will all be uppercase English letters.

flag

72% accept rate

3 Answers

vote up 1 vote down

Whenever you are looking for things in a string, try using NSScanner first.

NSString *yourString = @"ABCCDEDRFFED"; // For example
NSScanner *scanner = [NSScanner scannerWithString:yourString];

NSCharacterSet *charactersToCount = @"C" // For example
NSString *charactersFromString;

if (!([scanner scanCharactersFromSet:charactersToCount intoString:&charactersFromString])) {
    // No characters found
    NSLog(@"No characters found");
}

NSInteger characterCount = [charactersFromString length]; // should return 2 for this example
link|flag
vote up 0 vote down

This will return the number of characters replaced in a mutable string.

[string replaceOccurrencesOfString:@"A" withString:@"B" options:NSLiteralSearch range:NSMakeRange(0, [receiver length])];

replaceOccurrencesOfString:withString:options:range:

link|flag
vote up 0 vote down

I would probably use

NSString rangeOfCharacterFromSet:

or

rangeOfCharacterFromSet:options:range::

where the set is the set of characters you're searching for. It returns with the location of first character matching the set. Keep array or dictionary and increment the count for character, then repeat.

link|flag
If I'm understanding the Documentation correctly, this would give the range of any of the characters in the set. But I need the count of each character. – Elliot Jun 2 at 6:57
1  
my idea is to keep dictionary of char -> count pairs and then get the char at given index and increment it's count in dictionary ... or you could just iterate over the string and check if each character is in your set, if it is then increment it's count – stefanB Jun 2 at 7:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.