2 个版本
0.1.1 | 2023 年 5 月 17 日 |
---|---|
0.1.0 | 2023 年 5 月 17 日 |
#11 在 #stupid
57 每月下载量
在 8 个crate中(直接使用 3 个) 使用
3KB
format_table
使用愚蠢的 API 格式化表格。[查看文档](https://docs.rs/format_table)
示例
let mut table = vec!["product\tquantity\tprice".to_string()];
for (p, q, r) in [("tomato", 12, 15), ("potato", 10, 20), ("rice", 5, 12)] {
table.push(format!("{}\t{}\t{}", p, q, r));
}
format_table::format_table(table);
lib.rs
:
使用愚蠢的 API 格式化表格。
示例
let mut table = vec!["product\tquantity\tprice".to_string()];
for (p, q, r) in [("tomato", 12, 15), ("potato", 10, 20), ("rice", 5, 12)] {
table.push(format!("{}\t{}\t{}", p, q, r));
}
format_table::format_table(table);
要格式化的表格是一个 Vec<String>
,每行包含一个字符串。每行的表格列由一个 \t
字符分隔。