programming-examples/perl/String/Converting a string to all lowercase with the lc function.pl
2019-11-15 12:59:38 +01:00

10 lines
103 B
Perl

#!/usr/bin/perl -w
$upper = "ALL UPPERCASE";
$lower = lc($upper);
print "$lower\n";