version 3
Lowercase (string) String
Parameter | Type | Description | |
string | String | String to convert to lowercase | |
Function result | String | String in lowercase |
Description
Lowercase takes string and returns the string with all alphabetic characters in lowercase.
Example
The following project method capitalizes the string or text received as parameter. For instance, Caps ("john") would return "John".
` Caps project method ` Caps ( String ) -> String ` Caps ( Any text or string ) -> Capitalized text $0:=Lowercase($1) If (Length($0)>0) $0[[1]]:=Uppercase($0[[1]]) End if
See Also