IMS/CWB Style | Description and Examples |
"word" | Single word query Inside the double quotation marks you can use regular expressions |
"word"%c | Single word query (case insensitive) |
"word1" "word2" | Concatenation Operator. Example: "the" "book" |
"word1" | "word2" | OR Operator. Example: "the" ("beautiful" | "red") "book" |
"word1" []{0,AFT} "word2" | Retrieve
all the occurrences of word2 in the context following the word word2. Example: "the" []{0,4} "book" the book of the beautiful red book |