码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 每三个数字加一个逗号

时间:2017-03-07 10:38:14      阅读:198      评论:0      收藏:0      [点我收藏+]

标签:wstring   delete   news   mutable   mat   orm   sub   and   nsstring   

//每三个数字加一个逗号 : 123,234,324

+ (NSString *)countNumAndChangeformat:(NSString *)num

{

    int count = 0;

    long long int a = num.longLongValue;

    while (a != 0) {

        count++;

        a /= 10;

    }

    NSMutableString *string = [NSMutableString stringWithString:num];

    NSMutableString *newstring = [NSMutableString string];

    while (count > 3) {

        count -= 3;

        NSRange rang = NSMakeRange(string.length - 3, 3);

        NSString *str = [string substringWithRange:rang];

        [newstring insertString:str atIndex:0];

        [newstring insertString:@"," atIndex:0];

        [string deleteCharactersInRange:rang];

    }

    [newstring insertString:string atIndex:0];

    return newstring;

}

iOS 每三个数字加一个逗号

标签:wstring   delete   news   mutable   mat   orm   sub   and   nsstring   

原文地址:http://www.cnblogs.com/IOSwm/p/6513397.html

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