1 个不稳定版本
0.1.0 | 2020年3月8日 |
---|
#5 在 #eprint
7KB
148 代码行
interpol
Rust的字符串插值宏
用法
此包提供的宏对应于std的格式化宏(《format》,《print》,《println》,《eprint》,《eprintln》,...)。
您可以使用这些宏就像使用std的宏一样。
use interpol::println;
let a = 3;
let b = 4;
println!("{a} times {b} is {a * b}."); // => "3 times 4 is 12."
还可以指定格式化选项
let pi = 3.14;
println!("{pi:.10}"); // => "3.1400000000"
println!("{123:x}"); // => "7b"
let v = vec![1, 2, 3];
println!("{v:?}"); // => "[1, 2, 3]"
正确处理Unicode字符
let world = "世界";
println!("ハロー {world}"); // => "ハロー 世界"
可以编写表达式
println!("PI = {std::f64::consts::PI:.10}");
// => "PI = 3.1415926536"
println!("PI = { 1.0_f64.atan() * 4.0 :.10}");
// => "PI = 3.1415926536"
还可以编写嵌套块表达式
println!("{ { let t = 123; t * t } }"); // => "15129"
println!("{{ let t = 123; t * t }}");
// "{{" and "}}" is escaped so the result is:
// => "{ let t = 123; t * t }"
依赖项
~1.5MB
~35K SLoC