lowercase

lowercase, function

def const pure lowercase(a: text): text

Returns the lowercase version of a.

Examples

table T = with
  [| as Text |]
  [| "Hello World!" |]
  [| "SKU-42" |]

T.Lower = lowercase(T.Text)

show table "Lowercase" with
  T.Text
  T.Lower

This produces the following table:

Text Lower
Hello World! hello world!
SKU-42 sku-42

See also

User Contributed Notes
0 notes + add a note