package test;
public class Seeelefant extends SprechendesTier {
public Seeelefant(String name) {
super(name);
}
public String spreche(String text) {
System.out.println(text);
text = text.replaceAll("ie","ö");
text = text.replaceAll("e","ö");
text = text.replaceAll("i","ö");
text = text.replaceAll("ei","eu");
text = text.replaceAll("u","o");
text = text.replaceAll("I","Ö");
text = text.replaceAll("Ie","Ö" );
text = text.replaceAll("E","Ö");
text = text.replaceAll("Ei","Eu");
text = text.replaceAll("U","O");
System.out.println(text);
return text;
So mache ich das.
Kannst du mir helfen???