- #import "NSString+Number.h"
- @implementation NSString (Number)
- - (int)number {
-
- // count变量用来存储英文字母的个数。
- int count = 0 ;
-
- for(int i = 0;i<self.length;i++){
-
- // 取出i这个位置对应的字符
- unichar c = [self characterAtIndex:i];
-
- // 判断i ,如果是字母,count加1
- if((c >= 'a' && c<= 'z')||(c >= 'A' && c<= 'Z'))
- {
- count++;
-
- }
-
- }
- return count;
- }
复制代码 |