# format **Repository Path**: Coder_Zr/format ## Basic Information - **Project Name**: format - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2025-12-31 - **Last Updated**: 2025-12-31 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README format ====== A simple header-only C++11 std::string formatter Usage: ------ ```c++ // {0}或者{}都是指的第一个值 std::string test = util::Format("This is a nice string with numbers {0} and strings {1} nicely formatted", 123, "hello"); // {0,N}这是说这个值要占N位,空的位使用空格填充 std::string test = util::Format("{0, 20}", "Formatting is nice!"); ``` Fork from: https://github.com/arajar/format