key.*
finds all terms that start with key
.
- Lazy quantifiers such as
+?
- Word boundaries such as
\b
Regex queries operate at the token level. To execute regex over the original
text, use the keyword tokenizer.
key.*
finds all terms that start with key
.
+?
\b