tolower
Syntax:
Value
String
tolower
(
String
str)
Description:
Converts
str
to lowercase.
Examples:
($a1:$a5) = toupper($self)
Before:
A
B
C
1
Hello World
2
My Name is Alex
3
ABCabc
4
4.56
5
XSheet
6
16
41
After:
A
B
C
1
hello world
2
my name is alex
3
abcabc
4
4.56
5
xsheet
6
16
41
($d1:$d10) = toupper($b)