WLJS LogoWLJS Notebook

Decapitalize

Decapitalize[string] yields a string in which the first character has been made lowercase.

Examples

Lowercase the first character:

Decapitalize["Hello World"]
(* "hello World" *)

With all-caps input:

Decapitalize["HELLO"]
(* "hELLO" *)

Please visit the official Wolfram Language Reference for more details.

On this page