在Swift3 IOS中以印度编号格式显示货币

时间:2017-10-11 10:59:56

标签: ios swift3 xcode8

我有关于格式化卢比货币(印度卢比 - 印度卢比)的问题

例如,此处的数字表示为:

1
10
100
1,000
10,000
1,00,000
10,00,000
1,00,00,000
10,00,00,000

我试过这段代码:

var intString = 1000000
let asd = NumberFormatter.localizedString(from: NSNumber(value: Double(intString)!), number: NumberFormatter.Style.currency)

但这似乎并没有解决问题。任何有关此事的帮助将不胜感激

1 个答案:

答案 0 :(得分:1)

你可以这样做:

let formatter = NumberFormatter()              // Cache this, NumberFormatter creation is expensive.
formatter.locale = Locale(identifier: "en_IN") // Here indian locale with english language is used
formatter.numberStyle = .decimal               // Change to `.currency` if needed

let asd = formatter.string(from: NSNumber(value: intString)) // "10,00,000"

P.S。 Idk为什么Int变量被称为intString,但我保持它的一致性。