in reply to Remove ÿþ from a string
use utf8; my $string = 'AÿþBÿþÿþC'; $string =~ s/ÿþ//g; print $string; [download]
ABC [download]