low()

Function group Execute on client Platform(s)
String YES All

Syntax

low(string)

Description

Returns the lower case representation of a string. Any non-alphabetic characters in the strings are unaffected by low().

Example

Calculate lString as  low('DAVID')
# returns 'david'

Calculate lString as low('OrAcLe8')
# returns 'oracle8'

Calculate lString as low('1017')
# returns '1017'

Calculate lString as mid(low('PERIPHERAL'),3,3)
# returns 'rip'