我想检查Request.RawURL字符串是否与某个结构匹配。
要检查的结构是:
/health/<integer>/<string>
e.g。
/health/301/personal-trainers-at-work
如果原始url与此结构匹配,我希望表达式计算为true。
答案 0 :(得分:3)
使用此正则表达式/health/\d+/[\w-]+
/health/ const srting
\d+ 1 or more integers
/ const srting
[\w-]+ 1 or more alphanumeric characters _ or -