lCase
Top  Previous  Next

val = lCase(expr)

Returns a string that has been converted to lowercase.

Parameters
 
expr  
 
Any expression. If not string, converted to string.  

Example


a = lCase(123)
' Returns "123".
a = lCase("HellO")
' Returns "hello".