Intro

Build a reusable product-level query segment in GSC so you can separate item-specific searches from broader category demand.

Use this regex to isolate product-level queries in GSC when you want a clear segment built around specific items rather than category or intent modifiers.

The Regex

\b(shoes?|trainers?|laptop|laptops|chair|chairs)\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.

?

The question mark usually makes the previous character or group optional. That is handy when a query modifier appears inconsistently.

\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 grouped list of product nouns as standalone terms.
  • Creates a reusable pattern for item-level product reporting.
  • Helps you compare product and category demand more cleanly.

What it does not match

  • men's footwear category - Footwear is not in the grouped list.
  • furniture sale - No listed product noun appears.

Edge Cases

  • This is intentionally a template-style recipe, so the nouns should reflect your own catalogue.
  • Grouped product lists can become noisy if terms overlap with categories or attributes.

Example Matches Table

Query Match Why
buy office chair online Match Contains chair, which is in the grouped product nouns.
best running shoes Match Contains shoes as a product term.
men's footwear category No Footwear is not in the grouped list.
furniture sale No No listed product noun appears.

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

  • Segment item-level searches from broader merchandising demand.
  • Benchmark product pages against category pages.
  • Create quick product taxonomies in GSC using grouped terms.

Pro Tips

  • This is a template recipe, so replace the grouped nouns with your own catalogue terms.
  • Keep word boundaries to avoid partial-string matches in longer words.
  • Use this with page filters to see whether product pages absorb the expected item demand.
  • For large catalogues, split products into smaller grouped segments rather than one huge regex.

Variations

Add another product family

\b(shoes?|trainers?|laptop|laptops|chair|chairs|headphones?)\b

Expands the grouped product terms with one more item type.

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