😁

【Swift】よく使われる3大 String の format は ?

2024/05/21に公開
String(format: "%02x", 255)
// ff

String(format: "%02X", 170)
// AA

String(format: "%02d", 1)
// 01

String(format: "% 5d", 2)
//     2

String(format: "%.2f", 1.2)
// 1.20

String(format: "%.2f", 1.204)
// 1.20

String(format: "%.2f", 1.205)
// 1.21

String(format: "%.0f", 1.23)
// 1

String(format: "%f", 3.12)
// 3.120000

String(format: "%+.2f", -123.5)
// -123.50

String(format: "%p", 3)
// 0x3

String(format: "%@", "x")
// x

String(format: "%2$@ %1$@", "world", "Hello")
// Hello world

あと一つは ?

🙆🏻‍♂️ 参考

https://x.com/maochanz/status/1792728772128743762
https://qiita.com/chanzmao/items/8fbf8cd25bab40c3f627

Discussion