I tried to find out how to divide the Japanese Yen by 3 digits, as in the Japanese Yen display.
It's like 123,456,789 yen
or something like that.
Reference:
[Swift]数字を三桁ごとにカンマ区切りにする
This file contains 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
import UIKit | |
class ViewController: UIViewController { | |
override func viewDidLoad() { | |
super.viewDidLoad() | |
print(addComma(num: 123456789) + "円") //->123,456,789円 | |
} | |
func addComma(num:NSInteger) -> String { | |
let formatter = NumberFormatter() | |
formatter.numberStyle = NumberFormatter.Style.decimal | |
formatter.groupingSeparator = "," | |
formatter.groupingSize = 3 | |
let numnum = NSNumber(value: num) | |
let str = formatter.string(from: numnum)! | |
return str | |
} | |
} |