Swift如何将数值转换为可拼写的字符串

前端之家收集整理的这篇文章主要介绍了Swift如何将数值转换为可拼写的字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

比如100,我们希望输出”one hundred”,或者更好的是输出中文的”一百”

这貌似要写不少行代码,不过事实上你想多了! ;)

Cocoa为你提供了一件利器来完成这些事:NumberFormatter

let f = NumberFormatter()
f.numberStyle = .spellOut

print(f.string(from: 122100)!)

代码输出为:

one hundred twenty-two thousand one hundred

如果要输出指定国家的语言只需要改变locale即可,比如输出中文:

let f = NumberFormatter()
f.numberStyle = .spellOut
f.locale = Locale(identifier: "zh_CN")

print(f.string(from: 122100)!)

输出结果为:

十二万二千一百

原文链接:https://www.f2er.com/swift/322560.html

猜你在找的Swift相关文章