2 个版本
0.1.1 | 2022年8月12日 |
---|---|
0.1.0 | 2022年8月12日 |
#2 in #truncation
5KB
116 行
Strunc
字符串截断的库。
let output = "very long string".strunc_len(10);
assert_eq!("very lo...", output.to_string());
不同选项
// 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);
依赖项
~555KB