3 个稳定版本
使用旧的 Rust 2015
1.1.1 | 2017年9月14日 |
---|---|
1.1.0 | 2017年6月5日 |
1.0.0 | 2016年3月25日 |
在 文本处理 中排名 301
每月下载量 254,425
在 309 个 crate(其中33个直接)中使用
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());