2011年12月25日日曜日

文字列変換:数値のカンマ編集

<Xcode開発:Cocoa環境>
金額や数量等の数値データ(整数値)をカンマ編集して文字列に変換する。
NSNumberFormatterクラスを利用する。


カンマ編集
1.カンマ編集用クラスの生成
    NSNumberFormatter* nf = [[[NSNumberFormatter alloc] init] autorelease];
    [nf setNumberStyle:NSNumberFormatterDecimalStyle];
 
2.カンマ編集処理
    NSString *afterStr = [nf stringFromNumber:[NSNumber numberWithInt:1234]];
 <処理結果>
  ・afterStr : 1,234

0 件のコメント:

コメントを投稿