-
Notifications
You must be signed in to change notification settings - Fork 0
/
FormatierterText.java
69 lines (63 loc) · 1.67 KB
/
FormatierterText.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
* Speichert einen String im Standartisiertem Format zur Weiternutzung im Verschlüsselungsprogramm.
*/
public class FormatierterText {
private String text;
/**
* Im Konstruktor nimmt der Text die Formatierung an
*
* @author Wahrenburg, David
* @param text Input String
*/
FormatierterText(String text){
text = text.toLowerCase();
// text = leerzeichenHinzufuegen(text);
this.text = text;
umlauteEntfernen();
}
/**
* entfernt Umlaute (ä,ö,ü,ß) aus String
*
* @author Wahrenburg, David
*/
public void umlauteEntfernen(){
text = text.replace("ä","ae");
text = text.replace("ö","oe");
text = text.replace("ü","ue");
text = text.replace("ß","ss");
}
/**
* Fügt alle 5 Zeichen ein Leerzeichen ein
*
* @author Wahrenburg, David
* @param str Input String
* @return gibt einen String mit Leerzeichen zurück
*/
public String leerzeichenHinzufuegen(String str){
StringBuilder strB = new StringBuilder();
for(int i=0; i< str.length();i++){
strB.append(str.charAt(i));
if(i % 5 == 4){
strB.append(" ");
}
}
return strB.toString();
}
/**
* Gibt den text im Standartformat auf der Konsole aus
*
* @author Wahrenburg, David
*/
public void printFormatiertertext(){
System.out.println(this.text);
}
/**
* Getter für das text Attribut
*
* @author Wahrenburg, David
* @return Formatierten Text als String
*/
public String getText(){
return this.text;
}
}