This is the ThingsDB documentation for version v0, click here for the latest version!

lower

Return a new string in which all case-based characters are in lower case.

This function does not generate an event.

Function

str.lower()

Arguments

None

Return value

Returns a new string with all characters in lower case.

Example

Example using lower():

'Hello World!!'.lower();

Return value in JSON format

"hello world!!"