Skip to content
Ulf Schneider
Blog
Search
Search
ulf.codes,
press
s
to focus:
Search help
foo*
Will match documents with words
beginning
with “foo”.
foo bar
Will match documents that contain “foo”
or
“bar”.
+foo bar -baz
Will match documents that
must
contain “foo”,
might
contain “bar” and
must not
contain “baz”.
foo~1
Will match “boo”, as it requires a single (~1) edit (replacing “f” with “b”), but “boot” would not as it also requires an additional “t” at the end.