Crates.io | extabs |
lib.rs | extabs |
version | 1.0.3 |
source | src |
created_at | 2022-12-02 16:45:37.213401 |
updated_at | 2022-12-02 18:59:07.750434 |
description | Implements expandtabs for String |
homepage | |
repository | https://github.com/clowzed/extabs.git |
max_upload_size | |
id | 728486 |
size | 4,453 |
Implements expandtabs for String
Add this line in your Cargo.toml file
extabs = "1.0.3"
fn main() {
let s = String::from("Hello\tWorld!");
let expanded = s.expandtabs(4);
println!("{}", expanded);
}