I\'m trying to create content groups in Google Analytics. How do I match a page with sport/[SOMETHING] and not sport/[SOMETHING]/[SOMETHING]
Match:
This worked for me ^\/sports\/([^\/]+)\/$
^\/sports\/([^\/]+)\/$
Explanation: ^/sports/ => category to match with / escaped using \
([^/]+) => the not / once or more
/$ => the closing first level page depth / with a $ stop