在C#中,我可以通过以下方式将字符串中的任何字符转换为整数
intS="123123";
int i = 3;
Convert.ToInt32( intS[i].ToString());
Objective-C中此代码的最短等效项是什么?
我见过的最短的一行代码是
[NSNumber numberWithChar:[intS characterAtIndex:(i)]]
答案 0 :(得分:13)
这里有许多有趣的建议。
我认为这是最接近原始代码段的实现:
NSString *string = @"123123";
NSUInteger i = 3;
NSString *singleCharSubstring = [string substringWithRange:NSMakeRange(i, 1)];
NSInteger result = [singleCharSubstring integerValue];
NSLog(@"Result: %ld", (long)result);
当然,获得你所追求的东西的方法不止一种。
但是,正如您自己注意到的那样,Objective-C有其缺点。其中之一就是它不会尝试复制C功能,原因很简单,Objective-C已经 C.所以也许你最好只做你想要的简单C:
NSString *string = @"123123";
char *cstring = [string UTF8String];
int i = 3;
int result = cstring[i] - '0';
NSLog(@"Result: %d", result);
答案 1 :(得分:4)
它不一定是char
。这是一种做法:)
NSString *test = @"12345";
NSString *number = [test substringToIndex:1];
int num = [number intValue];
NSLog(@"%d", num);
答案 2 :(得分:1)
只是提供第三个选项,您也可以使用NSScanner:
NSString *string = @"12345";
NSScanner *scanner = [NSScanner scannerWithString:string];
int result = 0;
if ([scanner scanInt:&result]) {
NSLog(@"String contains %i", result);
} else {
// Unable to scan an integer from the string
}