| 1234567891011121314151617181920212223242526272829303132 | [[configure-text-analysis]]== Configure text analysisBy default, {es} uses the <<analysis-standard-analyzer,`standard` analyzer>> forall text analysis. The `standard` analyzer gives you out-of-the-box support formost natural languages and use cases. If you chose to use the `standard`analyzer as-is, no further configuration is needed.If the standard analyzer does not fit your needs, review and test {es}'s otherbuilt-in <<analysis-analyzers,built-in analyzers>>. Built-in analyzers don'trequire configuration, but some support options that can be used to adjust theirbehavior. For example, you can configure the `standard` analyzer with a list ofcustom stop words to remove.If no built-in analyzer fits your needs, you can test and create a customanalyzer. Custom analyzers involve selecting and combining different<<analyzer-anatomy,analyzer components>>, giving you greater control overthe process.* <<test-analyzer>>* <<configuring-analyzers>>* <<analysis-custom-analyzer>>* <<specify-analyzer>>include::testing.asciidoc[]include::analyzers/configuring.asciidoc[]include::analyzers/custom-analyzer.asciidoc[]include::specify-analyzer.asciidoc[]
 |