Lower

Strings
Aptilis 1

Lower(String)

Lower returns the expression it has been given with all letters set to lower case.

Return Value:
The same string, with letters A-Z set to lower case.

Example:

print(lower("AbCdEfG")$)
Result:
abcdefg

Notes:
Depending on the platforms, lower might return incorrect results for accentuated characters.