Created
March 19, 2013 10:54
-
-
Save AquaGeek/5195221 to your computer and use it in GitHub Desktop.
Get position of currency symbol from number formatter
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Courtesy of http://stackoverflow.com/a/12254356/1069919 | |
// NSLocale and CFLocale are toll-free bridged, so if you have an existing | |
// NSNumberFormatter, you can get its locale and use that instead. | |
CFLocaleRef usLocale = CFLocaleCreate(NULL, CFSTR("en_US")); | |
CFNumberFormatterRef usFormatter = CFNumberFormatterCreate(NULL, usLocale, kCFNumberFormatterCurrencyStyle); | |
CFLocaleRef frLocale = CFLocaleCreate(NULL, CFSTR("fr_FR")); | |
CFNumberFormatterRef frFormatter = CFNumberFormatterCreate(NULL, frLocale, kCFNumberFormatterCurrencyStyle); | |
NSString * usString = (__bridge NSString *)CFNumberFormatterGetFormat(usFormatter); | |
NSString * frString = (__bridge NSString *)CFNumberFormatterGetFormat(frFormatter); | |
NSUInteger loc = ([usString rangeOfString:@"¤"]).location; | |
NSLog(@"Currency marker at beginning for US? %@", (loc == 0) ? @"YES" : @"NO"); | |
loc = ([frString rangeOfString:@"¤"]).location; | |
NSLog(@"Currency marker at end for FR? %@", (loc == [frString length] - 1) ? @"YES" : @"NO"); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment