tolower
| tolower | 
  Purpose
 
 Generate the lowercase version of the provided text.
 
  Synopsis
 
function tolower(t:text|string):text
 function tolower(c:integer):integer
 
  Arguments
 
| 
     t 
     | 
     Text to convert
     | 
| 
     c 
     | 
     Character code
     | 
  Return value
 
 The lowercase version of the input string or a character code.
  Further information
 
  When this function is used with a text string, it returns a copy of its argument converted to lowercase. When it is called with an integer, the returned value corresponds to the character code of the lowercase version of the provided code. In both cases, the function will return an unmodified copy of its argument if no conversion can be done.
 
  Related topics
 
  Module
 
 
