2个版本
0.0.1 | 2020年5月19日 |
---|---|
0.0.0 | 2020年5月19日 |
#11 in #方式
3,432 每月下载次数
在 11 个包(直接使用 4 个) 中使用
6KB
52 行
string_concat!
一种用于在 no_std
+ alloc
应用中以低开销方式组合字符串的有用宏。
let name = "Richard";
let msg:String = string_concat!("Hello ",name,"!");
节省了您打字的时间
let name = "Richard";
let msg:String = {
let temp_string = String::new();
temp_string.push_str("Hello");
temp_string.push_str(name);
temp_string.push_str("!");
temp_string
}
贡献者
- @richardanaya
- @RustyYato