Help for this page

Select Code to Download


  1. or download this
    sub UpperLower {
        my( $old, $new ) = @_;
    ...
    
        return join '' => @new;
    }
    
  2. or download this
    sub UpperLower2 {
        my( $old, $new ) = @_;
    ...
    
        return $new;
    }