检查url是否与特定结构匹配

时间:2013-01-17 20:59:02

标签: regex vb.net

我想检查Request.RawURL字符串是否与某个结构匹配。

要检查的结构是:

/health/<integer>/<string>  

e.g。

/health/301/personal-trainers-at-work

如果原始url与此结构匹配,我希望表达式计算为true。

1 个答案:

答案 0 :(得分:3)

使用此正则表达式/health/\d+/[\w-]+

/health/ const srting    
\d+      1 or more integers    
/        const srting    
[\w-]+   1 or more alphanumeric characters _ or -