Icon LowerCase

Unit: Internal

Available In: Client and Server Applications

function LowerCase(const Value: String): String

The LowerCase function returns the Value input parameter with all characters converted to their lower-case representation. The browser's current locale setting is not used to perform this conversion. The return value is a String value.

Examples

X := LowerCase('Hello World');  // X is 'hello world'
Image