Skip to content

lower

Convert string to lowercase.

t = lower(str)

Returns str with all uppercase characters converted to lowercase. Other characters are unchanged. Applied elementwise to character arrays.

lower('Hello World') % 'hello world'
  • upper — Convert string to uppercase.
  • reverse — Reverse the order of characters in a string.