lowercase

Use the lowercase function to convert a number into the corresponding lowercase character from the alphabet.

lowercase ( index )

The result of this function is of type TEXT.

This function has one parameter:

  • index, type NUMBER. The index of the character.

The lowercase function returns the indicated character from the alphabet, depending on the active output language.

If a negative value is provided for index, the last character of the alphabet is returned. If index exceeds the number of characters in the alphabet, the number is wrapped around.

Examples

lowercase (1) results in "a"

lowercase (4) results in "d"

lowercase (-1) results in "z"

lowercase (27) results in "a"

lowercase (27) results in "æ" (output language DAN)