use locale; $string_lc = lc($string); $string_uc = uc($string);
sub lc { my $string = shift; $string =~ tr/ÁÀÇÉÈËÍÌÏÑÓÒÖÚÙÜ/áàçéèëíìïñóòöúùü/; CORE::lc($string); } sub uc { my $string = shift; $string =~ tr/áàçéèëíìïñóòöúùü/ÁÀÇÉÈËÍÌÏÑÓÒÖÚÙÜ/; CORE::uc($string); }
In reply to Re: uc/lc with extended ASCII
by rob_au
in thread uc/lc with extended ASCII
by Vennis
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |