Rust package to left pad a string with a character.
Inspired by the "left-pad" NPM package (and the fiasco that happened after its removal).
Supported Platforms * Unix (tested on FreeBSD, Linux and macOS) * Windows * cmd.exe * Powershell
``` rust use leftpadrs::{pad,padchar};
fn main() { let s = "foo";
println!("{}", pad(s, 5));
println!("{:?}", pad_char(s, 5, 'b'));
} ```
You can use this package in your project by adding the following
to your Cargo.toml
:
toml
[dependencies]
leftpad-rs = "1.0.1"
then you can use it in your own crates.