4个版本
0.2.2 | 2024年7月26日 |
---|---|
0.2.1 | 2024年1月7日 |
0.2.0 | 2024年1月7日 |
0.1.0 | 2023年5月11日 |
1026 在 文本处理
222 每月下载次数
在 xpg 中使用
4KB
这是Rust中解决将字符串的第一个字母转换为大写问题备受期待的工具包。
完全公开:此解决方案毫不掩饰地借鉴了StackOverflow上最前面的回答,作者是Shepmaster。
use ucfirst::ucfirst;
assert_eq!(ucfirst("apple"), "Apple");
另请参阅ccase
CLI工具和convert_case
库crate。