Excercise

  1. Try out the queries from the tutorial and check the results choosing Frequency breakdown from the drop-down menu in the upper right corner and clicking on Go.

To remember

  1. Try out:

    [word="search.+"]
    [word="search.{2}"]
    [word="search.{2,3}"]

    and check the results using Frequency breakdown

  2. Execute the querie below and check the results using Frequency breakdown

[word="[a-zA-Z]orse"]

You can also negate a character set using ^ inside the scquare brackets.

[word="[^whm]orse"]
  1. Execute the queries and check the result using Frequency breakdown

determiners or nouns:

[pos="DT|NN"]

verbs (including full verbs, auxiliary verbs but no modals)

[pos="V.*"]

full verbs only:

[pos="VV.*"]

full verbs in the past tense

[pos="VV[DN]"]

verbs beginning with under or over

[(pos = "V.*") & (word = "(under|over).+")]

Back