my %emoticons = ( smiley => ':)', wink => ';)', ); # example: smiley becomes :) foreach my $e (keys %emoticons) { $body =~ s{ \< img [^>]*? alt = "$e" [^>]*? \> } {$emoticons{$e}}igex; }