#compare #case #preserve #insensitiveley

cistring

一种保留大小写的字符串类型,但比较时不区分大小写。

3个不稳定版本

0.2.0 2024年7月21日
0.1.1 2020年8月20日
0.1.0 2020年8月20日

442文本处理

Download history 118/week @ 2024-07-20 21/week @ 2024-07-27 1/week @ 2024-08-03

140 次每月下载

MIT/Apache

9KB
199

CiString

一种保留大小写的字符串类型,但比较时不区分大小写。

示例

let upper = CiString::from("HELLO WORLD!");
let lower = CiString::from("hello world!");

assert_eq!(upper, lower);
println!("{}", upper); // -> "HELLO WORLD!"
println!("{}", lower); // -> "hello world!"

许可证

本项目采用Apache License 2.0或MIT许可证之一。

您可选择。

依赖项

~170KB