#string #str #left #left-pad #string-formatting #string-algorithms

leftpad-str

显然是 Rust 编程语言的最好 crate。该 crate 的唯一目标是实现 leftpad 函数。

2 个稳定版本

9.9.9 2023 年 6 月 8 日
6.6.6 2023 年 6 月 8 日

#21#left

26 每月下载量

MIT 许可证

540KB
66 行代码(不包括注释)

leftpad-str crate。

显然是 Rust 编程语言的最好 crate。该 crate 的唯一目标是实现 leftpad 函数

pub fn leftpad(input: &str, width: usize, padding_char: char) -> String;

示例

assert_eq!(leftpad("hello", 8, '*'), "***hello");
assert_eq!(leftpad("rust", 6, ' '), "  rust");

lib.rs:

leftpad-str crate。

显然是 Rust 编程语言的最好 crate。该 crate 的唯一目标是实现 leftpad 函数

pub fn leftpad(input: &str, width: usize, padding_char: char) -> String;

无运行时依赖