I\'m writing a program that works with documents in Perl and a lot of the documents have characters such as ä, ö, ü, é, etc (both capital and lowercase). I\'d l
ä, ö, ü, é, etc
use s/// (=Search&Replace) instead of m// (=Match)
s///
m//
e.g. $name =~ s/\x00c0/A/g;
$name =~ s/\x00c0/A/g;