i have a lot of field name in elcsearch , for example :
web_logfield_A, web_logfield_B ,web_logfield_C::abc,
apach_logfield_A, apach_logfield_A
if i want to get these fields value ( web_logfield_A, web_logfield_B ,web_logfield_C::abc )
can i using Regex expression for "field name" to query like
/web_logfield[A-Za-a_]+/
i have try to using .setQuery(QueryBuilders.termQuery("",""), but it's looks like cannot do that ? which method in JAVA API can do that ?