Confluence 5.6 のサポートは終了しています。
ドキュメントの最新バージョンを確認してください。
このページでは、検索を絞り込むのに使用する特殊な単語や句読点について説明します。
"cheese one" というフレーズ、または "cheese" と "one" が主要な単語の 1 つであるフレーズを含むコンテンツを検索するには、二重引用符を使用します。
"cheese one"
Note: Confluence will ignore common words (stop words), including 'and', 'the', 'or', and more, even if they are included within double quotes. See the default list of stop words used by Confluence's search engine, Lucene, in the Lucene documentation.
例:
If you would like to override Lucene's tokenisation and stemming, please cast your vote on this improvement request: CONF-14910.
"chalk" または "cheese" のいずれかの語を含むコンテンツを検索するには、 大文字の演算子 OR を使用します。
chalk OR cheese
"chalk" と "cheese" の両方の語を含むコンテンツを検索するには、大文字の演算子 AND を使用します。
chalk AND cheese
"chalk" は含むが "cheese" は含まないコンテンツを検索するには、大文字の演算子 NOT を使用します。
chalk NOT cheese
"chalk" と "butter" を含むが "cheese" は含まないコンテンツを検索するには、次のように入力します。
chalk butter -cheese
"chalk" を必ず含み、"cheese" か "butter" を含むコンテンツを検索するには、かっこを使用して検索語をグループ化します。
(cheese OR butter) AND chalk
To search for content with 'chalk' in its title, where title is the field keyword.
title:chalk
To search for 'butter' or 'batter' you can use a question mark as a wildcard:
b?tter
To search for 'chicken' or 'chickpea' you can use an asterisk as a wildcard:
chick*
You can use wildcards anywhere within a word, even at the very beginning:
*chick
To search for 'chick' or 'chickpea':
c*c*
You can also combine search characters to get the exact word. For example the search term below will return 'chick' but not 'chickpea':
c*c?
単語間の語数がある一定の数以内である 2 つの単語を見つけるには、後ろに数字をつけたチルダ文字を使用します。
For example, the following search will return 'Octagon blog post':
"octagon post"~1
The following search is not valid:
"octagon post"~0
アルファベット順に並べたときに、指定された範囲内に入る名前を検索するには、大文字の演算子「 TO 」を使用します。
[adam TO ben]
Note: You cannot use the AND keyword inside this statement.
Use a tilde character to find words spelled similarly.
To search for octagon, if unsure about spelling:
octogan~
さまざまな検索語を一緒に組み合わせることもできます。
o?tag* AND past~ AND ("blog" AND "post")
You can search Confluence content for anywhere a macro is used. To do this, just add macroName: to your search and append the macro name after the column. For example, search for all excerpt-include macros:
macroName:excerpt-include*
For more information about macroName and other search fields, see Confluence Search Fields.
labelText:' 接頭語を使用して、特定のラベルのついたコンテンツを具体的に検索します。下記の表に Confluence 検索ボックスに入力可能な検索語の例と、予測される検索結果を表示しています。検索対象 | 返されるコンテンツの内容 |
|---|---|
| contains the word ' |
| contains the word ' |
| has the label ' |
| has both labels ' |
The 'labelText:' prefix is an example of a search field. See more about Confluence Search Fields.