October 2019
Beginner
186 pages
5h 39m
English
The lowercase tokenizer, similar to the letter tokenizer, breaks the text into individual words whenever it finds a non-letter character, but it also turns all terms into lowercase:
POST _analyze { "tokenizer": "lowercase", "text": "You're a wizard, Harry." }
This will output the following result:
[you, re, a, wizard, harry]
Again, this tokenizer is not configurable.
Read now
Unlock full access