strcase

(strcase string [mode])

The strcase function converts a given string to a new upper case string (mode = nil or not supplied) or lower case string (mode unequal nil).

Examples

: (strcase "Abcde")

"ABCDE"

: (strcase "Abcde" T)

"abcde"

Related Functions

getstring