Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
71006eb86d
46
README.md
46
README.md
|
@ -0,0 +1,46 @@
|
||||||
|
#Texteditor
|
||||||
|
Texteditor is a program to edit a text by in- and output into the console.
|
||||||
|
#Usermanual
|
||||||
|
#ADD a Textline
|
||||||
|
```ADD```
|
||||||
|
First please enter the command add to add a new textline. Then enter the text you want to add .
|
||||||
|
|
||||||
|
```ADD [n]```
|
||||||
|
If you want to add a textline to a certain paragraph then please use the command add and then enter that paragraphnummber.
|
||||||
|
After that enter the text you want to add to that paragraph.
|
||||||
|
|
||||||
|
#DUMMY Text
|
||||||
|
```DUMMY```
|
||||||
|
First please enter the command dummy to enter a pre written text into the textline.
|
||||||
|
|
||||||
|
```DUMMY [n]```
|
||||||
|
If you want to enter a pre written dummy text into a specific paragraph then please enter the command dummy and then the paragraph that you want to use.
|
||||||
|
|
||||||
|
#REPLACE a Text
|
||||||
|
```REPLACE```
|
||||||
|
First please enter the command replace then enter the characters that you want to replace. After that please enter
|
||||||
|
the new characters that should replace the old characters.
|
||||||
|
|
||||||
|
```REPLACE [n]```
|
||||||
|
If you want to replace a text from a certain paragraph, please enter the command replace and then enter the characters you want to
|
||||||
|
replace. After you entered the characters you want to replace please enter now the new characters that should replace the
|
||||||
|
old characters.
|
||||||
|
|
||||||
|
#DELETE a Text
|
||||||
|
```DEL```
|
||||||
|
First please enter the command del to delete a text. Then please enter the text size you want to delete.
|
||||||
|
|
||||||
|
```DEL [n]```
|
||||||
|
If you want to delete a text from a certain paragraph then please enter the command del and then the paragraph that you want to delete.
|
||||||
|
|
||||||
|
#INDEX
|
||||||
|
``ÌNDEX``
|
||||||
|
First please enter the command index to show the index.
|
||||||
|
|
||||||
|
#Print the Text
|
||||||
|
```PRINT```
|
||||||
|
First please enter the command print to print out the current text you have.
|
||||||
|
|
||||||
|
#FORMAT the Text
|
||||||
|
```FORMAT```
|
||||||
|
|
|
@ -25,9 +25,6 @@ public class Text {
|
||||||
* @return returns true if the given paragraph exists and is added successfully
|
* @return returns true if the given paragraph exists and is added successfully
|
||||||
*/
|
*/
|
||||||
public boolean add(int paragraphNumber, String text) {
|
public boolean add(int paragraphNumber, String text) {
|
||||||
if(text.length() < 1) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
if (paragraphExists(paragraphNumber)) {
|
if (paragraphExists(paragraphNumber)) {
|
||||||
this.text.add((paragraphNumber - 1), text);
|
this.text.add((paragraphNumber - 1), text);
|
||||||
return true;
|
return true;
|
||||||
|
@ -42,9 +39,6 @@ public class Text {
|
||||||
* @return returns true if the paragraph is added successfully
|
* @return returns true if the paragraph is added successfully
|
||||||
*/
|
*/
|
||||||
public boolean add(String text) {
|
public boolean add(String text) {
|
||||||
if(text.length() < 1) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
this.text.add(text.replaceAll("[^A-Za-z0-9 .,:?!\"'-]",""));
|
this.text.add(text.replaceAll("[^A-Za-z0-9 .,:?!\"'-]",""));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -12,21 +12,25 @@ public class TextLogik {
|
||||||
textOutput = new TextOutput();
|
textOutput = new TextOutput();
|
||||||
String[] command;
|
String[] command;
|
||||||
|
|
||||||
textOutput.userInfoOutput("######################");
|
textOutput.userInfoOutput("#######################");
|
||||||
textOutput.userInfoOutput("#WELCOME TO THE EDITOR#");
|
textOutput.userInfoOutput("#WELCOME TO THE EDITOR#");
|
||||||
textOutput.userInfoOutput("######################");
|
textOutput.userInfoOutput("#######################");
|
||||||
do {
|
do {
|
||||||
textOutput.userInfoOutput("Please enter a Command: ");
|
textOutput.userInfoOutput("Please enter a Command: ");
|
||||||
command = TextInput.checkForInput();
|
command = TextInput.checkForInput();
|
||||||
|
|
||||||
switch (command[0]) {
|
switch (command[0]) {
|
||||||
case "ADD":
|
case "ADD":
|
||||||
|
String inputText = "";
|
||||||
|
while(inputText.length() == 0) {
|
||||||
textOutput.userInfoOutput("Please enter your text: ");
|
textOutput.userInfoOutput("Please enter your text: ");
|
||||||
|
inputText = TextInput.getTextInput();
|
||||||
|
}
|
||||||
if (command.length == 1) {
|
if (command.length == 1) {
|
||||||
checkIfSuccess(text.add(TextInput.getTextInput()));
|
checkIfSuccess(text.add(inputText));
|
||||||
} else if (isNumeric(command[1])) {
|
} else if (isNumeric(command[1])) {
|
||||||
int line = Integer.parseInt(command[1]);
|
int line = Integer.parseInt(command[1]);
|
||||||
checkIfSuccess(text.add(line, TextInput.getTextInput()));
|
checkIfSuccess(text.add(line, inputText));
|
||||||
} else {
|
} else {
|
||||||
textOutput.errorInvalidCommand();
|
textOutput.errorInvalidCommand();
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,7 +14,10 @@ public class TextOutput {
|
||||||
* @param text the ArrayList which is then formatted into the desired output.
|
* @param text the ArrayList which is then formatted into the desired output.
|
||||||
*/
|
*/
|
||||||
public void print(ArrayList<String> text) {
|
public void print(ArrayList<String> text) {
|
||||||
if (formatRaw) {
|
if(text.size() == 0) {
|
||||||
|
errorMissingText();
|
||||||
|
}
|
||||||
|
else if (formatRaw) {
|
||||||
printFormated(text);
|
printFormated(text);
|
||||||
} else {
|
} else {
|
||||||
toFormat(text);
|
toFormat(text);
|
||||||
|
@ -112,10 +115,15 @@ public class TextOutput {
|
||||||
* @param index ArrayList with words and in which part they have
|
* @param index ArrayList with words and in which part they have
|
||||||
*/
|
*/
|
||||||
public void indexOutput(ArrayList<String> index) {
|
public void indexOutput(ArrayList<String> index) {
|
||||||
|
if(index.size() == 0) {
|
||||||
|
userInfoOutput("index empty");
|
||||||
|
}
|
||||||
|
else {
|
||||||
for (String word : index) {
|
for (String word : index) {
|
||||||
System.out.println(word);
|
System.out.println(word);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Method to give out the Error "Invalid Paragraph".
|
* Method to give out the Error "Invalid Paragraph".
|
||||||
|
@ -130,4 +138,11 @@ public class TextOutput {
|
||||||
public void errorInvalidCommand() {
|
public void errorInvalidCommand() {
|
||||||
System.err.println("Invalid Command");
|
System.err.println("Invalid Command");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Method to give out the Error "Missing Text".
|
||||||
|
*/
|
||||||
|
public void errorMissingText() {
|
||||||
|
System.err.println("Missing Text");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -17,7 +17,7 @@ class TextOutputTest {
|
||||||
text.add("Virtute praecedunt, quod fere cotidianis proeliis cum Germanis contendunt, septentr ionesimmensoslongusw ordos.");
|
text.add("Virtute praecedunt, quod fere cotidianis proeliis cum Germanis contendunt, septentr ionesimmensoslongusw ordos.");
|
||||||
text.add("Virtutedasjdhashdkjhakjdhakdshjkashd praecedunt, quod fere cotidianis proeliis cum");
|
text.add("Virtutedasjdhashdkjhakjdhakdshjkashd praecedunt, quod fere cotidianis proeliis cum");
|
||||||
//text.add("ordos.");
|
//text.add("ordos.");
|
||||||
//text.add("1234");
|
text.add("1234");
|
||||||
text.add("12417575147517845 445264565");
|
text.add("12417575147517845 445264565");
|
||||||
text.add(" ");
|
text.add(" ");
|
||||||
//text.add("1eeeeeee8597389751");
|
//text.add("1eeeeeee8597389751");
|
||||||
|
|
|
@ -58,8 +58,11 @@ public class TextTest {
|
||||||
Assertions.assertFalse(txt.replace(3, "alt", "neu"));
|
Assertions.assertFalse(txt.replace(3, "alt", "neu"));
|
||||||
Assertions.assertTrue(txt.replace(1, "erste", "zweite"));
|
Assertions.assertTrue(txt.replace(1, "erste", "zweite"));
|
||||||
Assertions.assertTrue(txt.replace("zweite", "erste"));
|
Assertions.assertTrue(txt.replace("zweite", "erste"));
|
||||||
|
Assertions.assertTrue(txt.add("Text Text hallo Text"));
|
||||||
|
Assertions.assertTrue(txt.replace("Text", "Test"));
|
||||||
Assertions.assertEquals("Das ist der zweite Beispiel Text.", txt.getText().get(0));
|
Assertions.assertEquals("Das ist der zweite Beispiel Text.", txt.getText().get(0));
|
||||||
Assertions.assertEquals("Das ist der erste Beispiel Text.", txt.getText().get(1));
|
Assertions.assertEquals("Das ist der erste Beispiel Text.", txt.getText().get(1));
|
||||||
|
Assertions.assertEquals("Test Test hallo Test", txt.getText().get(2));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue