Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

initial commit #1369

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 38 additions & 2 deletions src/main/java/core/basesyntax/FileWork.java
Original file line number Diff line number Diff line change
@@ -1,8 +1,44 @@
package core.basesyntax;

import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.Arrays;

public class FileWork {
private static final String SPASE_WITH_PUNCTUATION = "\\W+";
private static final String PREFIX = "w";
private final StringBuilder readText = new StringBuilder();
private final StringBuilder filterText = new StringBuilder();

public String[] readFromFile(String fileName) {
//write your code here
return null;
try (BufferedReader reader = new BufferedReader(new FileReader(fileName))) {
String value = reader.readLine();
while (value != null) {
readText.append(value).append(System.lineSeparator());
value = reader.readLine();
}
} catch (IOException e) {
throw new RuntimeException("Can't read file with name" + fileName, e);
}
if (!readText.isEmpty()) {
return filter(readText);
}
return new String[0];
}

private String[] filter(StringBuilder inputText) {
String[] splitWords = inputText.toString().toLowerCase().split(SPASE_WITH_PUNCTUATION);
for (String currentWord : splitWords) {
if (currentWord.startsWith(PREFIX)) {
filterText.append(currentWord).append(" ");
}
}
if (filterText.isEmpty()) {
return new String[0];
}
String[] result = filterText.toString().split(SPASE_WITH_PUNCTUATION);
Arrays.sort(result);
return result;
}
}
Loading