public interface Tokenizer
This is not as easy as it sounds. For example, when should a token containing a hypen be split into two or more tokens? When does a period indicate the end of an abbreviation as opposed to a sentence or a number or a Roman numeral? Sometimes a period can act as a sentence terminator and an abbreviation terminator at the same time. When should a single quote be split from a word?
| Modifier and Type | Method and Description |
|---|---|
java.lang.String[] |
split(java.lang.String text)
Splits the string into a list of tokens.
|