You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
322 B
Perl

while ($Input = <>) {
print "\L$Input\E";
print "\L$Input";
chop $Input;
if ("\L$Input" eq "lowercase") {
print "Found lowercase\n";
}
print "\U$Input\n";
if ("\U$Input" eq "UPPERCASE") {
print "Found UPPERCASE\n";
}
}