Converting a string from lowercase to uppercase with the uc function : uc « String « Perl






Converting a string from lowercase to uppercase with the uc function

     

#!/usr/bin/perl -w

$lower = "all lowercase";

$upper = uc($lower);

print "$upper\n";

   
    
    
    
    
  








Related examples in the same category