ReCase
Changes the input text to the desired convention case.
Install
Add this to your Cargo.toml:
[]
= "0.1.1"
Example:
use ReCase;
All supported convention cases:
- camelCase
- snake_case
- PascalCase
- kebab-case
- dot.case
- path/case
- windows\path\case
- normal case
- Title Case
- Sentence case
- Header-Case
- UPPER_CASE_SNAKE_CASE
- AlTeRnAtInG cAsE
Limitations
- The crate has not undergone any runtime optimization.
- Some UTF-8 characters can't be lowercased, like "SS" which is the uppercased form of "ß". There might be some more cases that I failed to detect.
Acknowledgements
Heavily influenced by ReCase from techniboogie-dart.