Skip to content

tm_lower Function

tm_lower converts all cased letters in the given string to lowercase.

Examples

sh
tm_lower("HELLO")
hello
tm_lower("АЛЛО!")
алло!

This function uses Unicode's definition of letters and of upper- and lowercase.

  • tm_upper converts letters in a string to uppercase.
  • tm_title converts the first letter of each word in a string to uppercase.