Icon LocaleLowerCase

Unit: Internal

Available In: Client and Server Applications

function LocaleLowerCase(const Value: String): String

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

Examples

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