#空白字符 #字符串 #截断

truncate_string_at_whitespace

使用Unicode安全截断字符串到指定的长度,在最近的空白处

4个稳定版本

1.0.3 2024年4月2日
1.0.2 2021年5月7日

#374 in 文本处理


site-gen使用

Apache-2.0

5KB
80

截断空白字符

在特定长度处截断字符串,使用最近的空白字符。

用法

将以下内容添加到你的Cargo.toml

truncate_string_at_whitespace = "1.0.2"

然后

use truncate_string_at_whitespace::truncate_text;


fn main () {
  let s = "This is a string that I want to truncate";
  let st = truncate_text(s, 12);
  assert_eq!(st, "This is a");
  let st2 = truncate_text(s, 16);
  assert_eq!(st2, "This is a string");
}

许可证

© 2021 Todd Kennedy, Apache-2.0

无运行时依赖