我在Elasticsearch中存储句子。 例如:
this is a sentence
this is a second sentence
我想在我的Kibana 4.3.1中显示一个包含最常用术语的数据表,选择:
Metric = count
Split rows
Aggregation = terms
Field = input
Order by = metric count
Order descending. Size 5
这就是我在桌子上的内容:
this 2
is 2
a 2
sentence 2
second 1
我想删除短字,少于3个字符。在这个例子中,“是”和“a”。
如何实现这一目标?
谢谢!
答案 0 :(得分:0)
它可以添加此Exclude Pattern
:
[a-zA-Z0-9]{0,3}