Help for this page

Select Code to Download


  1. or download this
    use locale;
    $string_lc = lc($string);
    $string_uc = uc($string);
    
  2. or download this
    sub lc {
        my $string = shift;
    ...
    }