Converting a string to all lowercase with the lc function : lc « String « Perl
- Perl
- String
- lc
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