# Simple Analyzer（简单分析器）

只要遇到不是字母的字符，simple（简单）分析器将文本分解成词语。所有词语都是小写的。

> 解析:这个分析器基于费字母字符来分割所提供的文本,并将其转换为小写.

## **定义**

它包括：

Tokenizer(分词器)

* Lower Case Tokenizer 小写分词器

## **输出示例**

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

上述句子将产生以下词语：

```
[ the, quick, brown, foxes, jumped, over, the, lazy, dog, s, bone ]
```

## **配置**

simple（简单）分析器是不可配置的。


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://xiaoxiami.gitbook.io/elasticsearch/ji-chu/33-analysisfen-679029/333analyzersfen-xi-566829/simple-analyzerff08-jian-dan-fen-xi-qi-ff09.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
