Converting a string to all lowercase with the lc function : lc « String « Perl






Converting a string to all lowercase with the lc function

     

#!/usr/bin/perl -w

$upper = "ALL UPPERCASE";

$lower = lc($upper);

print "$lower\n";

   
    
    
    
    
  








Related examples in the same category