| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 | [[configuring-analyzers]]=== Configuring built-in analyzersThe built-in analyzers can be used directly without any configuration.  Someof them, however, support configuration options to alter their behaviour.  Forinstance, the <<analysis-standard-analyzer,`standard` analyzer>> can be configuredto support a list of stop words:[source,js]--------------------------------PUT my_index{  "settings": {    "analysis": {      "analyzer": {        "std_english": { <1>          "type":      "standard",          "stopwords": "_english_"        }      }    }  },  "mappings": {    "properties": {      "my_text": {        "type":     "text",        "analyzer": "standard", <2>        "fields": {          "english": {            "type":     "text",            "analyzer": "std_english" <3>          }        }      }    }  }}POST my_index/_analyze{  "field": "my_text", <2>  "text": "The old brown cow"}POST my_index/_analyze{  "field": "my_text.english", <3>  "text": "The old brown cow"}--------------------------------// CONSOLE<1> We define the `std_english` analyzer to be based on the `standard`    analyzer, but configured to remove the pre-defined list of English stopwords.<2> The `my_text` field uses the `standard` analyzer directly, without    any configuration.  No stop words will be removed from this field.    The resulting terms are: `[ the, old, brown, cow ]`<3> The `my_text.english` field uses the `std_english` analyzer, so    English stop words will be removed.  The resulting terms are:    `[ old, brown, cow ]`/////////////////////[source,js]----------------------------{  "tokens": [    {      "token": "old",      "start_offset": 4,      "end_offset": 7,      "type": "<ALPHANUM>",      "position": 1    },    {      "token": "brown",      "start_offset": 8,      "end_offset": 13,      "type": "<ALPHANUM>",      "position": 2    },    {      "token": "cow",      "start_offset": 14,      "end_offset": 17,      "type": "<ALPHANUM>",      "position": 3    }  ]}----------------------------// TESTRESPONSE/////////////////////
 |