Crates.io | trans-case |
lib.rs | trans-case |
version | 0.1.0 |
source | src |
created_at | 2024-06-14 10:16:59.362736 |
updated_at | 2024-06-14 10:16:59.362736 |
description | Transform case. |
homepage | |
repository | https://github.com/mdmahikaishar/trans-case |
max_upload_size | |
id | 1271830 |
size | 7,031 |
Transform case.
cargo add trans-case
use trans_case::{TransCase, Case};
let sentence = TransCase::new("trans-case in rust");
println!("{}", sentence.case(Case::Upper)); // TRANS CASE IN RUST
println!("{}", sentence.case(Case::Title)); // Trans Case In Rust
println!("{}", sentence.case(Case::Camel)); // transCaseInRust
Contributions are welcome! I would like you to contribute in this project.
This project is in its early stages, and there are many missing features that need implementation. Check the Issues section for a list of features, enhancements, and bug fixes that are planned.
This project is licensed under the MIT License - see the LICENSE file for details.