string string.tolower(string s)
The following example return the lower case version of the input string 'Hello World'.
{string.tolower('Hello World')}
{string.capitalize('to be or not to be')} {string.tolower('to be or not to be')} {string.totitlecase('to be or not to be')} {string.toupper('to be or not to be')}