up vote 6 down vote favorite
4
share [g+] share [fb]

I have a NSString value of @"78000". How do I get this in currency format, i.e. $78,000 with it remaining an NSString.

link|improve this question

feedback

3 Answers

up vote 14 down vote accepted

You need to use a number formatter. Note this is also how you would display dates/times etc in the correct format for the users locale

// alloc formatter
NSNumberFormatter *currencyStyle = [[NSNumberFormatter alloc] init];

// set options.
[currencyStyle setFormatterBehavior:NSNumberFormatterBehavior10_4];
[currencyStyle setNumberStyle:NSNumberFormatterCurrencyStyle];

NSNumber *amount = [NSNumber numberWithInteger:78000];

// get formatted string
NSString* formatted = [currencyStyle stringFromNumber:amount]

[currencyStyle release];
link|improve this answer
feedback

The decimal/cents at the end can be controlled as follows:

[currencyStyle setMaximumFractionDigits:0];

Here's the documentation link from apple

link|improve this answer
feedback

The answer above will convert a number but here is a method for actually converting a NSString to currency format

- (NSString*) formatCurrencyWithString: (NSString *) string
{
    // alloc formatter
    NSNumberFormatter *currencyStyle = [[NSNumberFormatter alloc] init];

    // set options.
    [currencyStyle setFormatterBehavior:NSNumberFormatterBehavior10_4];

    // reset style to no style for converting string to number.
    [currencyStyle setNumberStyle:NSNumberFormatterNoStyle];

    //create number from string
    NSNumber * balance = [currencyStyle numberFromString:string];

    //now set to currency format
    [currencyStyle setNumberStyle:NSNumberFormatterCurrencyStyle];

    // get formatted string
    NSString* formatted = [currencyStyle stringFromNumber:balance];

    //release
    [currencyStyle release];

    //return formatted string
    return formatted;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.