http://qs1969.pair.com?node_id=264981


in reply to string matching with extented ASCII characters

Well, if that "„§" really is chr(180), then you can find it like this:

$Buffer =~ s/\xb4/4/g;

\x takes a hex code. See perlretut or perlre.