Converting a string to all lower case characters.
Go
strings.ToLower("Text")
JavaScript
"Text".toLowerCase()
Perl
lc('Text')
PHP
strtolower('Text')
Converting a string to all lower case characters.
strings.ToLower("Text")
"Text".toLowerCase()
lc('Text')
strtolower('Text')