Leftpad

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).

Build status

CircleCI

Usage

Docs.rs

Add the following to your Cargo.toml: toml [dependencies] leftpad-rs = "0.1"

``` rust use leftpad_rs::*;

fn main() { let s = "foo";

println!("{}", pad(s, 5));
println!("{:?}", pad_char(s, 5, 'b'));

} ```