GET _analyze
{
  "tokenizer" : "standard",
  "text" : "this is a test 13544478956"
}

 

GET _analyze
{
  "tokenizer" : "standard",
  "filter": [{"type": "length", "min":1, "max":3 }],  
  "text" : "this is a test"
}

 

POST _analyze
{
  "char_filter": [], 
  "tokenizer": "standard",
  "filter": [
    "stop"
  ],
  "text": "Eating an apple a day keeps doctor away"
}

 

相关文章:

  • 2022-12-23
  • 2022-01-15
  • 2021-12-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-01
  • 2022-01-22
  • 2021-05-17
  • 2021-09-25
  • 2022-12-23
  • 2021-06-04
相关资源
相似解决方案