in reply to Re: Detecting Strange Characters in Text?in thread Detecting Strange Characters in Text?
#!/usr/bin/perl use warnings; use strict; my $text = "ßeta"; print $text, "\n"; $text =~ s/\xDF//; print $text, "\n"; __OUTPUT__ ßeta eta [download]