#string #white-space #trim #single #tail #lead #consecutive

collapse

删除并合并连续空白字符为单个空格

3 个版本

0.1.2 2022 年 11 月 20 日
0.1.1 2022 年 11 月 1 日
0.1.0 2022 年 11 月 1 日

1296文本处理 中排名

Download history 22/week @ 2024-03-12 27/week @ 2024-03-19 9/week @ 2024-03-26 42/week @ 2024-04-02 4/week @ 2024-04-09 25/week @ 2024-04-16 24/week @ 2024-04-23 13/week @ 2024-04-30 5/week @ 2024-05-07 16/week @ 2024-05-14 9/week @ 2024-05-21 5/week @ 2024-05-28 20/week @ 2024-06-04 11/week @ 2024-06-11 52/week @ 2024-06-18 20/week @ 2024-06-25

每月下载 105

MIT 许可证

6KB
82

文档

https://docs.rs/collapse

fn collapse(s: &str) ->String;

#[macro_use]
use collapse::*;

collapsed_eq!("two  spaces", "two spaces");
collapsed_eq!("new\r\nlines", "new\nlines");
collapsed_eq!(" lead \t tail \r", "lead tail");

lib.rs:

比较字符串的函数和宏,忽略空白字符

无运行时依赖