Intro

Track a controlled set of misspelt query variants in GSC so you can monitor leakage, typo demand, or recurring spelling mistakes around important terms.

Use this regex to capture a practical set of correct and misspelt terms when you want to monitor typo patterns in Search Console.

The Regex

\b(analytics|analytcs|dashboard|dashbaord|google|gaogle)\b

How This Regex Works (Explained Simply)

()

Parentheses group terms together so GSC treats them as one unit. That is what lets one regex cover several query variants in a single filter.

|

The pipe means OR. GSC will match any term on either side of the pipe, which is useful for variants, modifiers, or alternative phrases.

\b

Backslash-b marks a word boundary. It helps stop short terms from matching inside longer words in GSC queries.

GSC regex is case-insensitive by default, so capital letters do not need separate variants. GSC also uses partial matching by default, so the regex can match part of a longer query unless you anchor it with ^ or $.

What This Regex Does

  • Matches the listed correct and misspelt variants.
  • Helps you report on typo-led demand without building separate filters for each spelling.
  • Works best as a controlled vocabulary recipe for critical terms.

What it does not match

  • search consle reporting - Search consle only matches if you use the variation.
  • seo reporting platform - None of the listed spelling variants appear.

Edge Cases

  • This recipe is intentionally controlled; it does not generate misspellings automatically.
  • If you only want typo traffic and not correct spellings, remove the correctly spelt forms from the group.

Example Matches Table

Query Match Why
seo analytcs dashboard Match Analytcs is one of the included misspellings.
gaogle search console tips Match Gaogle is explicitly included in the pattern.
search consle reporting No Search consle only matches if you use the variation.
seo reporting platform No None of the listed spelling variants appear.

How to Use This in Google Search Console

  1. Open Performance and go to Search results.
  2. Click Add filter and choose Query.
  3. Select Custom (regex).
  4. Paste the regex and click Apply.

When to Use This

  • Monitor typo-led demand around important products or categories.
  • Check whether common misspellings still reach the right pages.
  • Build controlled typo lists for reporting and brand monitoring.

Pro Tips

  • Keep misspelling lists tightly curated rather than trying to predict every typo.
  • Review exports regularly because spelling mistakes shift over time.
  • Add the correct spellings beside the typos so you can compare scale and CTR.
  • Use this on a per-topic basis rather than as one giant typo regex.

Variations

Include Search Console typos

\b(analytics|analytcs|dashboard|dashbaord|google|gaogle|search console|search consle)\b

Adds another correct-and-misspelt pair for a common SEO term.

Related Regex Recipes

CTA

Regex is only the first step. The real bottleneck is turning manual filters into a repeatable workflow your team actually uses. Spicy Metrics helps you move from ad hoc filtering to operational SEO workflows.

Move beyond manual regex work