in reply to Polish text
Hi Shmunzie, try this:
perl -MEncode -E 'my $text="żłóBżE"; $text = decode_utf8($text); say length($text); say encode_utf8(uc($text))'
(Note: As pointed out earlier you did not specify the encoding you have your text in, this assumes utf8 for which Encode provides sugar functions.)
|
|---|