- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
/**
*\brief isinteger
*isinteger function will check if the NSString is a number or not
* \Param NSSting*
* \return true or false
*/
bool isinteger(NSString* theString)
{
int myInt;
NSScanner *theScanner = [NSScanner scannerWithString:theString];
if ([theScanner scanInt:&myInt] && [theScanner isAtEnd] )
return true;
else
return false;
}
tirinox 20.05.2015 15:35 # +2
Gerchicov-bp 21.05.2015 10:18 # 0
остальное вполне могло бы сгодиться - ну разница вам, будете вы искать через regular expression, вручную или через NSScanner?
crazy_horse 21.05.2015 10:26 # 0
Gerchicov-bp 21.05.2015 11:24 # 0
BOOL result = ([theScanner scanInt:&myInt] && [theScanner isAtEnd] );
return result;
crazy_horse 21.05.2015 11:37 # 0
guest 14.11.2015 14:53 # 0
guest 20.11.2015 07:35 # 0
guest 20.11.2015 15:08 # 0
guest 24.11.2015 09:43 # 0