Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Goで数字をパディングしたいとしましょう:
4 => "004" 23 => "023"
どうすればいいですか?
fmt パッケージの"%0xd"フラグを使用します。ここで、はパディングする先行ゼロの数です。fmt.Printfx
"%0xd"
fmt.Printf
x
import "fmt" fmt.Printf("%03d", 4) // will print "004"
インターフェイスは C と同じです。