| SEARCH | PLAIN | CQP SYNTAX ONLY |
|---|---|---|
| contracted form isn't | is n't(word space before n't) | "is" "n't"(word space before n't) |
| genitive form boy's | boy 's(word space before 's) | "boy" "'s"(word space before 's) |
| comma included, or optional In this study(,) we |
In this study , we In this study ,? we |
"In""this""study""," "we" "In""this""study"","? "we" |
| all inflected forms of breakv | (default attribute 'lemma') | [lemma="break"] |
| déjà vu with and without diacritics | d.j. vu | "deja" %d "vu" |
| take metacharacters literally | \? | "?" %l |
| thank upper|lower case | (T|t)hank -or tick 'lemma';use with care |
"thank" %c |
| word w/|w/o certain letters | favou?rite walks?, walk(ed)? |
"favou?rite" "walks?" "walk(ed)?" |
| specific POS: design as a verb: | design/VV.* | [word="design" & pos="V.*"] |
| all words ending in -ly which are adjectives | .*ly/JJ | [word=".*ly" &pos="JJ"] |
| words ending in -ly followed by a noun | .*ly [pos="N*"] | ".*ly" [pos="N*"] |
| POS of adjacent word: confused followed by a preposition or a common noun: |
confused /(IN|NN.*) or confused [pos="IN"|pos="NN.*"] |
"confused" [pos="IN"|pos="NN.*"] or "confused*" [pos="IN|PP"] |
| all occurrences of cool except the noun | (no negative conditions) | [word="cool" & pos!="N.*"] |
| sentence beginning with coord.conj. (conjunctive adv) |
/SENT /CC [pos="SENT"] [pos="CC"] |
<s>[pos="CC"]or [pos="SENT"] [pos="CC"] |
| sentences ending with preps | /IN /SENT | [pos="IN"][pos="SENT"] |
| optional word between words | piqued (.)* interest | "piqued" []? "interest" |
| repeated [] for indef. range between | (not reliable) | "no" "doubt" []* "that" |
| restricted open interval throw ... particle |
— | (range: 3 to right) throw []{0,3} [pos="RP"] |
| do not let interval include <s> boundary |
— | "no" "doubt"[]* "that" within s |
NOTE: The cqp used in Intellitext does not respond to the [] matchall, but does respond to the regex [word !="\W"] (i.e. not a non-word) or [word="\w"] (i.e, "any word"). Both also work in this cwb version of cqp.
Troubling parsings are pulled up: "not" "that" [pos="JJ.*"] ("of")? "a" [pos="NN.*"]
Here also: "as|so" "far" "as" [pos="N.*"]{1,3}[lemma="be"] "concerned"
"not" [pos="RB.*" & word!="too"] [pos="JJ.*" ] ("of")? "a" [pos="NN.*"]