I need to check if a char is digit or not.
NSString *strTest=@\"Test55\"; char c =[strTest characterAtIndex:4];
I need to find out if \'c\' is
This is actually quite simple:
isdigit([YOUR_STRING characterAtIndex:YOUR_POS])