Lucene query syntax allows for single character wildcards with a ?. There appears to be no equivalent in Kibana query language. Some users would like to have this functionality when using KQL.
Note: Similar functionality is possible with an * in the middle of a string, but likely will return more results. customer_namer: M*t could return Matt whereas customer_namer: M?t could only return a name with the length of 3, such as Mat
Lucene query syntax allows for single character wildcards with a
?. There appears to be no equivalent in Kibana query language. Some users would like to have this functionality when using KQL.Note: Similar functionality is possible with an
*in the middle of a string, but likely will return more results.customer_namer: M*tcould returnMattwhereascustomer_namer: M?tcould only return a name with the length of 3, such asMat