#table #format #stupid #api

format_table

使用愚蠢的 API 格式化表格

2 个版本

0.1.1 2023 年 5 月 17 日
0.1.0 2023 年 5 月 17 日

#11#stupid

Download history 62/week @ 2024-04-05 24/week @ 2024-04-12 22/week @ 2024-04-19 27/week @ 2024-04-26 20/week @ 2024-05-03 20/week @ 2024-05-10 26/week @ 2024-05-17 19/week @ 2024-05-24 20/week @ 2024-05-31 16/week @ 2024-06-07 22/week @ 2024-06-14 23/week @ 2024-06-21 9/week @ 2024-06-28 3/week @ 2024-07-05 22/week @ 2024-07-12 21/week @ 2024-07-19

57 每月下载量
8 个crate中(直接使用 3 个) 使用

AGPL-3.0

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 字符分隔。

无运行时依赖