Type a word or quoted phrase in Concordance.
Use Pattern and batch search for sequences, fields, and repeats.
Every query and every corpus stays in this browser.
Choose the simplest search that works
- Known word or phrase?
Use ordinary Concordance search. - Several possible spellings?
Add*or?as a wildcard. - A spelling rule or a set of alternatives?
Wrap a regular expression in slashes. - A sequence of token conditions?
Use CQL in the query builder or Pattern and batch search.
Words and phrases
Concordance normalizes the query with the selected language profile before matching. Case is ignored by ordinary word searches.
important"in this case"القرار الإداري重要Wildcards
Wildcards operate inside a token. They are useful for inflectional families, incomplete spellings, and uncertain characters.
decid** matches zero or more letters or digits: decide, decided, decision, and similar forms.wom?n? matches exactly one letter or digit: woman and women.[word="قانون*"][word="*ية"]Regular expressions
Write a regular expression between / delimiters. Context anchors it to the whole token, so /كتب|كتاب/ means “either complete token,” not “contains this anywhere.”
/law|court|judge/ii requests case-insensitive matching./un.*able/un and ending with able./\p{L}{8,}/uu flag enables Unicode property classes.[word=/قرار|حكم|قانون/]Useful regex building blocks
.* + ?[abc](one|two){2,5}CQL token patterns
Each pair of square brackets describes one token. Put token blocks next to each other to describe a sequence.
[word="قرار"][word=/قرار|حكم/] [word="*"][word="court"] [] [word="decision"][pos="adjective"] [pos="noun"][lemma="decide"][word="very"]{1,3}[word=/admin.*/ & pos="adjective"]&.word blocks. Pattern and batch search inside Concordance additionally accepts empty blocks, lemma and part-of-speech fields, combined conditions, and repeats.Logic, presets, and batches
Pattern and batch search can run several independent lines at once and merge their concordance evidence.
peace OR warNOT peaceNOUNقرار
[word=/حكم|قانون/]
ADJECTIVEMultilingual examples
These examples illustrate syntax only. After analysis, Context proposes examples from your actual corpus rather than copying these words into the query box.
[word=/قرار|قانون/] [word="*"][word="significant"] [][word=/bueno|buena/][word="important*"][word=/важный|важная/][word="重要"] [word="*"]Accuracy, speed, and privacy
Word and character matching are deterministic. Grammatical presets and lemmas are exploratory annotations: English uses the bundled offline tagger; other supported languages use transparent lexical classes. Always inspect the returned lines when the distinction matters.
/.*/ can still take time because they may inspect every token.