The lower( function converts text to lower case.
Parameters
This function has one parameter:
text – The first value.
Description
The lower( function converts text to all lower case (small letters).
lower("John smith") ☞ john smith
lower("mary Bishop") ☞ mary bishop
lower("NET 30") ☞ net 30
lower("NEW York") ☞ new york
lower(30) ☞ 30
As the last line shows, if you pass a number to this function it will be converted to text (like the str( function).
See Also
History
Version | Status | Notes |
10.0 | No Change | Carried over from Panorama 6.0 |