码迷,mamicode.com
首页 > 其他好文 > 详细

货币:字符串转换成货币格式

时间:2016-06-14 13:49:17      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

NSMutableString *newStr = [[NSMutableString alloc] initWithString:[NSString stringWithFormat:@"%ld",(long)_flowerNum]];

    NSInteger insertPosition = newStr.length / 3;

    NSInteger remaiderNum = newStr.length % 3;

    NSInteger strLength = newStr.length;

    if (strLength > 3) {

        if (remaiderNum != 0) {

            for (NSInteger i = 1; i <= insertPosition; i++) {

                [newStr insertString:@"," atIndex:strLength - 3 * i];

            }

        }else{

            for (NSInteger i = 1; i < insertPosition; i++) {

                [newStr insertString:@"," atIndex:strLength - 3 * i];

            }

        }

    }

货币:字符串转换成货币格式

标签:

原文地址:http://www.cnblogs.com/haohao-developer/p/5583680.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!