lower

convert given string to lowercase


Parameters

lower string :char :string :literal

Returns

  • :char
  • :string
  • or  :nothing

Examples

copy
print lower "hello World, 你好!" ; "hello world, 你好!"

copy
str: "hello World, 你好!" lower 'str ; str: "hello world, 你好!"

copy
ch: `A` lower ch ; => `a`

Related