Help for this page

Select Code to Download


  1. or download this
    sub uclast ($) {
        my $foo = shift;
        $foo =~ s/(\w)$/\u$1/;
        return $foo;
    }