| | Re: Perl question Jeremy Sproat
| | | (...) Try this: $string = lc $string; Alternatively, I think this will work also: $string =~ tr/[A-Z]/[a-z]/; But if you *REALLY* want to make it look impressive (to a 1st-year programmer anyway :-), you could do: @upchars = qw( A B C D E F G H I J (...) (25 years ago, 4-Oct-99, to lugnet.off-topic.geek)
| | | | | | | | Re: Perl question David Eaton
| | | | | (...) Doh! I had no idea there was a function to do it already! DaveE (25 years ago, 5-Oct-99, to lugnet.off-topic.geek)
| | | | | | |