Skip to content

Separate numbers into commas for each three digits (in Japanese yen)

   

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]数字を三桁ごとにカンマ区切りにする

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
}
}

  1. Edit TableView and delete a Cell (side-slide).
  2. Get the current date and day of the week and the current time
  3. Customize the layout of TableVIew using CustumTableViewCell and accessoryView.
  4. Adding a TextField to UIAlertController
  5. Implementing NavigationController
  6. Generating a QR code from a string or URL
  7. Display an alert with UIAlertController