untools 1.0.1

A simple and user-friendly underscore variable naming tool.
untools-1.0.1 is not a library.
Visit the last successful build: untools-1.0.10

uutool

A Rust utility crate for converting variable names from camelCase to snake_case.

Features

  • Convert variable names from camelCase to snake_case format.
  • Option to convert the result to uppercase.
  • Simple and easy-to-use tool for maintaining consistent variable naming conventions.

Installation

Add the following dependency to your Cargo.toml file:

[dependencies]
uutools = "1.0.0"

Usage

use ctsc_utils::ctsc;

fn main() {
    let camel_case_name = "myVariableName";
    let snake_case_name = ctsc(camel_case_name, true);
    println!("Converted name: {}", snake_case_name);
}

License

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