|
"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.