Exact
pattern: youtube.com/contact
matches: /contact
Single segment
pattern: youtube.com/user/*/profile
matches: /user/alice/profile
does not match: /user/a/b/profile
Any depth
pattern: youtube.com/docs/**
matches: /docs, /docs/v1, /docs/v1/api/reference
End-with leaf at any depth
pattern: youtube.com/**/videos
matches: /channel/UC123/videos, /user/alice/videos
does not match: /videos (requires at least one segment before /videos)
Require at least one segment before leaf
pattern: youtube.com/**/about
matches: /channel/UC123/about, /user/alice/about
does not match: /about