uce/site/doc/pages/to_lower.txt
2026-06-16 12:21:31 +00:00

19 lines
320 B
Plaintext

:sig
String to_lower(String s)
:params
s : the string to be converted
return value : returns a version of 's' where all upper case characters have been changed into lower case
:see
>string
:content
Returns a lower-case version of `s`.
This function is not yet Unicode-aware.
:example
print(to_lower("UCE"), "\n");