| Crates.io | left-pad |
| lib.rs | left-pad |
| version | 1.0.1 |
| created_at | 2016-03-24 08:28:18.093718+00 |
| updated_at | 2016-03-24 09:06:25.860548+00 |
| description | Provides left-padding for strings. |
| homepage | https://futile.github.io/leftpad-rs |
| repository | https://github.com/futile/leftpad-rs.git |
| max_upload_size | |
| id | 4545 |
| size | 5,065 |
This crate provides generic left-padding functions for strings, including both &str and String.
Import with extern crate left_pad;.
Usage example:
use left_pad::{leftpad, leftpad_with};
assert_eq!(leftpad("blubb", 7), " blubb");
assert_eq!(leftpad_with("blubb", 7, '.'), "..blubb");
let s: String = "blubb".to_owned();
assert_eq!(leftpad(s, 7), " blubb");