Help for this page

Select Code to Download


  1. or download this
    $name = "world";
    $uc_name = uc($name);
    print $uc_name,$/;
    
  2. or download this
    $name = "world";
    $name =~ tr/[a-z]/[A-Z]/;
    print $name, $/;