Intro

Pair a query regex with a page filter in GSC so you can answer tighter questions such as which support pages rank for login or help queries.

Use this regex when you plan to combine query-level matching with a GSC page filter for a more precise report.

The Regex

\b(help|support|login|pricing)\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 a practical support-and-access modifier set.
  • Is intended to be combined with a page filter rather than used in isolation.
  • Helps narrow one report down to both query intent and page type.

What it does not match

  • documentation for seo dashboard - Documentation only matches if you use the variation.
  • best seo dashboard - None of the grouped support modifiers appear.

Edge Cases

  • Without the companion page filter this regex may be too broad for diagnostic work.
  • Keep the query set aligned to the page section you plan to analyse.

Example Matches Table

Query Match Why
support login issue Match Contains two of the grouped query modifiers.
pricing help for seo dashboard Match Pricing and help are both in the grouped set.
documentation for seo dashboard No Documentation only matches if you use the variation.
best seo dashboard No None of the grouped support modifiers 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.
  5. Add a Page filter for the section you want to analyse, then compare the result.

When to Use This

  • Find which page sections rank for a specific query family.
  • Separate support intent on product pages from support intent on support pages.
  • Build cleaner GSC investigations without exporting everything first.

Pro Tips

  • The regex is only half of the workflow; the page filter is what makes the analysis precise.
  • Save your favourite query-plus-page combinations so you can rerun them quickly.
  • Use this for diagnostics when a query family appears to land on the wrong section of the site.
  • Compare two page sections against the same regex to find cannibalisation or leakage.

Variations

Include docs queries

\b(help|support|login|pricing|docs?)\b

Adds a documentation shorthand to the support-focused query set.

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