| Crates.io | strunc |
| lib.rs | strunc |
| version | 0.1.1 |
| created_at | 2022-08-12 01:50:17.653697+00 |
| updated_at | 2022-08-12 01:52:55.012083+00 |
| description | String truncation with suffixes |
| homepage | |
| repository | |
| max_upload_size | |
| id | 643691 |
| size | 4,918 |
A string truncating crate.
let output = "very long string".strunc_len(10);
assert_eq!("very lo...", output.to_string());
Different options:
// Default:
"very long string is very long".strunc(); // truncates to 25 characters
// Customize the suffix:
let output = "very long string".strunc_len_suf(15, "....");
assert_eq!("very long s....", output);