#!/usr/bin/perl $text="ö"; print "$text 2\n"; $text =~ s/[éè]/e/g; print "$text 3\n"; $text =~ s/[öÖ]/oe/g; print "$text 4\n";