xHarbour Reference Documentation > Function Reference |
Converts a character string to lowercase.
Lower( <cString> ) --> cLowerCaseString
The return value is a character string containing only lowercase letters.
The character function Lower() copies the passed string, replaces all uppercase letters with lowercase letters and returns the result. It is related to function Upper() wich converts a string to uppercase letters. Both functions are used for case-insensitive string routines.
See also: | IsLower(), IsUpper(), Upper() |
Category: | Character functions |
Source: | rtl\strcase.c |
LIB: | xhb.lib |
DLL: | xhbdll.dll |
// The example demonstrates various results of LOWER() PROCEDURE Main ? Lower( "xHARbOUR" ) // result: xharbour ? Lower( "123 ABC - def" ) // result: 123 abc - def RETURN
http://www.xHarbour.com