You are looking at documentation for an older release.
Not what you want? See the
current release documentation.
Whitespace Analyzeredit
The whitespace tokenizer breaks text into terms whenever it encounters a
whitespace character.
Example outputedit
POST _analyze
{
"tokenizer": "whitespace",
"text": "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
}The above sentence would produce the following terms:
[ The, 2, QUICK, Brown-Foxes, jumped, over, the, lazy, dog's, bone. ]
Configurationedit
The whitespace tokenizer is not configurable.