1 unstable release

0.1.0 Jun 14, 2024

#1111 in Text processing

MIT license

8KB
150 lines

Trans Case

Rust

Transform case.

Get Strated

cargo add trans-case

Example

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

Contributing

Contributions are welcome! I would like you to contribute in this project.

Roadmap

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.

License

This project is licensed under the MIT License - see the LICENSE file for details.

No runtime deps