在Swift中,我可以使用格式说明符来格式化字符串:
// This will return "0.120"
String(format: "%.03f", 0.12)
但是官方文档并未提供有关受支持的格式说明符或如何构建类似于"%.03f"
的模板的任何信息或链接:https://developer.apple.com/documentation/swift/string/3126742-init
它只说:
返回以给定格式的字符串作为模板初始化的String对象,其余参数值将替换为该模板。