Lowercase

4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next

version 3


Lowercase (string) String

ParameterTypeDescription
stringStringString to convert to lowercase
Function resultStringString 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

Uppercase.


4D - Documentation   Français   English   German   4th Dimension 2004, Command Theme List   4th Dimension 2004, Command Alphabetical List   4th Dimension 2004, Constant Theme List   Back   Previous   Next