lowercase_roman_number

Use the lowercase_roman_number function to convert a number into a roman numeral. The output is in lowercase characters.

lowercase_roman_number ( input )

This function returns a value of type TEXT.

The function has one parameter:

  • input, type NUMBER. The number to be converted.

This function only supports values between 1 and 3999, inclusive. Fractional parts are ignored.

The output for values outside the supported range is undefined.

Examples

lowercase_roman_number (3) results in "iii"

lowercase_roman_number (2016) results in "mmxvi"