vote up 1 vote down star

Im trying to work out a url that will match domain.com\about-us\ & domain.com\home\

I have a url regex:

^(?P<page>\w+)/$

but it won't match the url with the - in it.

I've tried

^(?P<page>\.)/$
^(?P<page>\*)/$

but nothing seems to work.

flag

1 Answer

vote up 6 vote down check

Try: ^(?P<page>[-\w]+)/$

[-\w] will accept a-z 1-9 and dash

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.