#case #inflect #camel

inflections

高性能的词形变化转换库,用于更改单词属性,如大小写

3 个稳定版本

使用旧的 Rust 2015

1.1.1 2017年9月14日
1.1.0 2017年6月5日
1.0.0 2016年3月25日

文本处理 中排名 301

Download history 33366/week @ 2024-03-14 36536/week @ 2024-03-21 36701/week @ 2024-03-28 40385/week @ 2024-04-04 40750/week @ 2024-04-11 42892/week @ 2024-04-18 44433/week @ 2024-04-25 49453/week @ 2024-05-02 42136/week @ 2024-05-09 57100/week @ 2024-05-16 59043/week @ 2024-05-23 63185/week @ 2024-05-30 62685/week @ 2024-06-06 67650/week @ 2024-06-13 60923/week @ 2024-06-20 50880/week @ 2024-06-27

每月下载量 254,425
309 个 crate(其中33个直接)中使用

MIT 许可证

28KB
281

inflections

一个专注于高性能的 Rust 库,用于将一种字符串风格转换为另一种风格。

阅读 文档 了解更多。

示例

use inflections::Inflect;

assert_eq!("Hello World".to_camel_case(), "helloWorld".to_owned());

lib.rs:

这是一个库,允许任何人通过性能上的强调来改变其字符串的多种属性。允许程序员在多个上下文中一致地操作单个程序名称。

示例

// Remember to import the `Inflect` trait!
use inflections::Inflect;

assert_eq!("Hello World".to_camel_case(), "helloWorld".to_owned());

无运行时依赖