-
-
Notifications
You must be signed in to change notification settings - Fork 18
string_lower
CryoEagle edited this page Dec 26, 2018
·
2 revisions
Returns a copy of a given string in all lowercase letters.
string_lower(str)
Argument | Description |
---|---|
string str |
The string to convert to lowercase |
Returns: string
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.
str1 = "Hello World";
str2 = string_lower(str1);
This will set str2 to "hello world".
Back to strings