- Docs
- Cloaked Search
- Usage
- Configuration
- Filters - lowercase
Lowercase token filter
Changes token text to lowercase. For example, you can use the lowercase filter to change THE Lazy DoG to the lazy dog.
Add to an analyzer
lowercase can be added to any analyzer as a filter.
JSON"analyzer": { "lowercase_analyzer": { "type": "custom", "tokenizer": "standard", "filter": ["lowercase"] } }