in reply to Re: Re: Regexes for Case Change
in thread Regexes for Case Change


I think it's generally better to do this with the lc operator rather than tr since lc handles localisation character sets

Only if "use locale" is in effect. Otherwise the following is unlikely to do anything:     print uc 'ü';

This assertion also depends on what the "general" case is considered to be. The general case is probably a single character set so a transliteration, as shown by rob_au, is probably sufficient.

--
John.