Modiffy Keyword analyzer to analyze original text but lowercase

Is there a way of modifying the built in keyword analyzer such as it analyze the following as:

[ the 2 quick brown-foxes jumped over the lazy dog's bone. ]

POST _analyze
{
  "analyzer": "keyword",
  "text": "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
}

instead of:

[ The 2 QUICK Brown-Foxes jumped over the lazy dog's bone. ]

I kinda find it easier to always know that i can use prefix("text", "the 2 quick")
Then be sure to having the correct lower/uppercase characters

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.