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.
|
|
Im trying to work out a url that will match domain.com\about-us\ & domain.com\home\ I have a url regex:
but it won't match the url with the - in it. I've tried
but nothing seems to work.
|
|||
|
|
|
|
Try:
[-\w] will accept a-z 1-9 and dash |
||
|
|