如何计算字符串中字符的出现次数?
实施例
字符串:123-456-7890
我想在给定的字符串中找到“ - ”的出现次数
答案 0 :(得分:34)
你可以这样做:
NSString *string = @"123-456-7890";
int times = [[string componentsSeparatedByString:@"-"] count]-1;
NSLog(@"Counted times: %i", times);
<强>输出:强>
Counted times: 2
答案 1 :(得分:2)
这将完成工作,
int numberOfOccurences = [[theString componentsSeparatedByString:@"-"] count];
答案 2 :(得分:2)
我为你做了这个。试试这个。
unichar findC;
int count = 0;
NSString *strr = @"123-456-7890";
for (int i = 0; i<strr.length; i++) {
findC = [strr characterAtIndex:i];
if (findC == '-'){
count++;
}
}
NSLog(@"%d",count);
答案 3 :(得分:1)
int num = [[[myString mutableCopy] autorelease] replaceOccurrencesOfString:@"-" withString:@"X" options:NSLiteralSearch range:NSMakeRange(0, [myString length])];
replaceOccurrencesOfString:withString:options:range:
方法返回已完成的替换次数,因此我们可以使用它来确定字符串中有多少-
个。
答案 4 :(得分:1)
int total = 0;
NSString *str = @"123-456-7890";
for(int i=0; i<[str length];i++)
{
unichar c = [str characterAtIndex:i];
if (![[NSCharacterSet alphanumericCharacterSet] characterIsMember:c])
{
NSLog(@"%c",c);
total++;
}
}
NSLog(@"%d",total);
这很有用。希望能帮助到你。快乐的编码:)
答案 5 :(得分:0)
您可以使用replaceOccurrencesOfString:withString:options:range:
NSString
方法
答案 6 :(得分:0)
如果字符串以您要检查的字符开头或结尾,则当前选择的答案将失败。
改为使用此:
int numberOfOccurances = (int)yourString.length - (int)[yourString stringByReplacingOccurrencesOfString:@"-" withString:@""].length;