Help for this page

Select Code to Download


  1. or download this
    upcase_in($v1, $v2);  # this changes $v1 and $v2
    sub upcase_in {
     for (@_) { tr/a-z/A-Z/ }
    }