Function voca_rs::case::lower_first

source ·
pub fn lower_first(subject: &str) -> String
Expand description

Converts the first character of the subject to lower case.

Arguments

  • subject - The string to convert.

Example

use voca_rs::*;
case::lower_first("Fred");
// => "fred"
case::lower_first("FRED");
// => "fRED"
use voca_rs::Voca;
"Fred"._lower_first();
// => "fred"