Skip to content

Instantly share code, notes, and snippets.

@sebk
Created March 4, 2013 19:08
Show Gist options
  • Save sebk/5084576 to your computer and use it in GitHub Desktop.
Save sebk/5084576 to your computer and use it in GitHub Desktop.
Check if NSString is numeric
-(BOOL)isNumeric:(NSString*)string {
NSLocale *l_de = [[NSLocale alloc] initWithLocaleIdentifier: @"de_DE"];
NSNumberFormatter *f = [[NSNumberFormatter alloc] init];
[f setLocale: l_de];
[f setAllowsFloats: YES];
if ([f numberFromString:string]) {
return YES;
}
return NO;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment