Perl string lc() function - Quick Tutorial - About Perl
Perl lc function reference - learn how to use Perl's lc() function in this quick tutorial. ... Perl's lc() function takes a string, makes the entire thing lowercase, and then returns the new string. $myWord = 'WORD'; $myLowerWord = lc($myWord);...