Files
highground-fork/string/docs/modify/lower.md

432 B

string_Lower

Make a string lowercase.

Arguments

  • str (string): the string to make lowercase.

Returns

lowerString (string): the string in lowercase.

Raises

  • AllocFail: raised if Ground failed to allocate memory for the new string.

Example

Ground

call !string_Lower "my STRING" &lowerString
println $lowerString # "my string"

Solstice

puts string_Lower("my STRING") // "my string"