Mam dokument tekstowy i zapytanie (zapytanie może być więcej niż jednym słowem). Chcę znaleźć pozycję wszystkich wystąpień zapytania w dokumencie.Jak uzyskać pozycje wszystkich dopasowań w ciągu?
Pomyślałem o documentText.indexOf(query)
lub używając wyrażenia regularnego, ale nie mogłem sprawić, żeby działało.
I skończyć z następującą metodą:
Po pierwsze, muszę utworzyć typ danych o nazwie QueryOccurrence
public class QueryOccurrence implements Serializable{
public QueryOccurrence(){}
private int start;
private int end;
public QueryOccurrence(int nameStart,int nameEnd,String nameText){
start=nameStart;
end=nameEnd;
}
public int getStart(){
return start;
}
public int getEnd(){
return end;
}
public void SetStart(int i){
start=i;
}
public void SetEnd(int i){
end=i;
}
}
Następnie użyłem tego typu danych w następujący sposób:
public static List<QueryOccurrence>FindQueryPositions(String documentText, String query){
// Normalize do the following: lower case, trim, and remove punctuation
String normalizedQuery = Normalize.Normalize(query);
String normalizedDocument = Normalize.Normalize(documentText);
String[] documentWords = normalizedDocument.split(" ");;
String[] queryArray = normalizedQuery.split(" ");
List<QueryOccurrence> foundQueries = new ArrayList();
QueryOccurrence foundQuery = new QueryOccurrence();
int index = 0;
for (String word : documentWords) {
if (word.equals(queryArray[0])){
foundQuery.SetStart(index);
}
if (word.equals(queryArray[queryArray.length-1])){
foundQuery.SetEnd(index);
if((foundQuery.End()-foundQuery.Start())+1==queryArray.length){
//add the found query to the list
foundQueries.add(foundQuery);
//flush the foundQuery variable to use it again
foundQuery= new QueryOccurrence();
}
}
index++;
}
return foundQueries;
}
Ta metoda zwraca listę wszystkich wystąpień zapytania w dokumencie, każdy z jego pozycją.
Czy możesz zaproponować jakiemuś easerowi i szybszy sposób na wykonanie tego zadania.
Dzięki
Powinno to pomóc: ['String # indexOf (String, int)'] (http://docs.oracle.com/javase/6/docs/api/java/lang/String.html#indexOf%28java. lang.String,% 20int% 29) –