Letter tokenizer

letter トークナイザーは、文字でない文字に出会うたびにテキストを用語に分割します。これはほとんどのヨーロッパ言語に対しては合理的に機能しますが、単語がスペースで区切られていない一部のアジア言語に対してはひどい結果をもたらします。

Example output

Python

  1. resp = client.indices.analyze(
  2. tokenizer="letter",
  3. text="The 2 QUICK Brown-Foxes jumped over the lazy dog's bone.",
  4. )
  5. print(resp)

Ruby

  1. response = client.indices.analyze(
  2. body: {
  3. tokenizer: 'letter',
  4. text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
  5. }
  6. )
  7. puts response

Js

  1. const response = await client.indices.analyze({
  2. tokenizer: "letter",
  3. text: "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone.",
  4. });
  5. console.log(response);

Console

  1. POST _analyze
  2. {
  3. "tokenizer": "letter",
  4. "text": "The 2 QUICK Brown-Foxes jumped over the lazy dog's bone."
  5. }

上記の文は次の用語を生成します:

Text

  1. [ The, QUICK, Brown, Foxes, jumped, over, the, lazy, dog, s, bone ]

Configuration

letter トークナイザーは設定可能ではありません。