I want to check if the Request.RawURL string matches a certain structure.
The structure to check would be:
/health/<integer>/<string>
e.g.
/health/301/personal-trainers-at-work
If the raw url matches this structure I want the expression to evaluate to true.
use this regex
/health/\d+/[\w-]+