Wildcards are supported in terms, phrases, and exact phrases using * to match zero, one, or more characters and ? to match a single character.
术语、短语和精确短语支持通配符,使用*
匹配零个、一个或多个字符,使用?
匹配单个字符。
The * wildcard character can appear on its own and implies Google-style. The “anywhere after” wildcard pattern can be combined with the = prefix for identifier based pattern matching. Search will return and highlight any word that begins with the root of the word truncated by the * wildcard character.*
通配符可以单独出现,并符合谷歌风格。“anywhere after”通配符模式可以与基于标识符的模式匹配的=前缀组合。搜索将返回并突出显示以*通配符截断的词根开头的任何单词。
The following will all find the term apple.
下面的查询语句都将匹配术语“apple”。
TEXT:app?e
TEXT:app*
TEXT:*pple
appl?
*ple
=*ple
"ap*le"
"***le"
"?????"
When performing a search that includes a wildcard character, it is best to wrap your search term in double quotation marks. This ensures all metadata and content are searched.
执行包含通配符的搜索时,最好用双引号将搜索词括起来。这样可以确保搜索所有元数据和内容。