The regex query allows you to use regular expressions to match terms in the _all field.A detailed overview of lucene's regex engine is available here: Regular expressions in Elasticsearch
A note on anchoring
Lucene’s patterns are always anchored. The pattern provided must match the entire string. For string "abcde":

ab.* will match
abcd will not match