string_lower

With this function you can force a string to contain only lower case characters.

NOTE This function only detects the 26 letter English alphabet from A - Z.

 

Syntax:

string_lower(string);

ArgumentTypeDescription
stringStringThe string to convert to lowercase.

 

Returns:

String

 

Example:

str1 = "Hello World";
str2 = string_lower(str1);

The above code will set str2 to "hello world".