黑马程序员技术交流社区
标题: 确定一个字符串中包含几个数字的问题 [打印本页]
作者: 超の 时间: 2015-9-29 16:41
标题: 确定一个字符串中包含几个数字的问题
main()函数的内容为:
#import <Foundation/Foundation.h>
#import "NSString+countNum.h"
int main()
{
NSString *str=@"sadhe123123ada";
//调用NSString的扩展方法:countNumForString;
[str countNumForString];
return 0;
}
在创建一个NSString类的扩展类(countNum):
.h文件中的内容为:
#import <Foundation/Foundation.h>
//扩展方法的声明:
@interface NSString (countNum)
-(void)countNumForString;
@end
.m文件中的内容为:
#import "NSString+countNum.h"
扩展方法的实现:
@implementation NSString (countNum)
-(void)countNumForString{
int count=0;
for (int i=0;i<self.length;i++) {
unichar ch= [self characterAtIndex:i];
if (ch>='0'&&ch<='9') {
count++;
}
}
NSLog(@"%@数字的个数为%d",self,count);
}
@end
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |