Perl Lower/Upper Case First Character
ucfirst
Takes a string and retruns it with the first character in upper case.
[perl]
ucfirst Str1
[/perl]
lcfirst
Takes a string and retruns it with the first character in lower case.
[perl]
lcfirst Str1
[/perl]