
org.languagetool.tokenizers.eo.EsperantoWordTokenizer Maven / Gradle / Ivy
The newest version!
/* LanguageTool, a natural language style checker
* Copyright (C) 2008 Daniel Naber (http://www.danielnaber.de)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301
* USA
*/
package org.languagetool.tokenizers.eo;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import org.languagetool.tokenizers.WordTokenizer;
/**
* @author Dominique Pelle
*/
public class EsperantoWordTokenizer extends WordTokenizer {
public EsperantoWordTokenizer() {
}
/**
* Tokenizes just like WordTokenizer with the exception that words
* such as "dank'" contain an apostrophe within it.
*
* @param text
* - Text to tokenize
* @return List of tokens.
*
* Note: a special string \u0001\u0001EO_APOS\u0001\u0001 is used to replace apostrophe
* during tokenizing.
*/
@Override
public List tokenize(String text) {
// TODO: find a cleaner implementation, this is a hack
String replaced = text.replaceAll(
"(? tokenList = super.tokenize(replaced);
List tokens = new ArrayList<>();
// Put back apostrophes and remove spurious spaces.
Iterator itr = tokenList.iterator();
while (itr.hasNext()) {
String word = itr.next();
if (word.endsWith("\u0001\u0001EO_APOS2\u0001\u0001")) {
itr.next(); // Skip the next spurious white space.
}
word = word.replace("\u0001\u0001EO_APOS1\u0001\u0001", "'")
.replace("\u0001\u0001EO_APOS2\u0001\u0001", "'");
tokens.add(word);
}
return tokens;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy