string_lower


Description

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);

Argument Description
string The string to convert to lowercase.


Returns:

String


Example:

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

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