Converts the alphabetic characters in a specified string to uppercase,
respecting locale-specific casing rules. This is particularly important for languages where the standard lowercase conversion rules do not apply,
ensuring accurate and culturally correct text processing. The function defaults to the current page's locale if no locale is specified.
Lucee Function Reference
lsucase()
Example
lsucase(string string,[locale locale]):string
Arguments
The arguments for this function are set. You can not use other arguments except the following ones.
Name | Type | Required | Description |
---|---|---|---|
string | string | Yes | The string to be converted to uppercase. This can be a direct string value or a variable that contains the string. |
locale | locale | No | Optional. Specifies the locale to use for the conversion, overriding the default locale of the page. This should be a locale code string (e.g., "en-US" for American English or "tr-TR" for Turkish). |