Having issues matching a hyphen character in my urls file. Here is an example of what needs to be passed: "12-34-56".
In python, the "\w+" matches this, but django urls will not. I have also tried (from another post in this forum) "\[-w]+" which did not match it either. The only way I have been able to get django to match this string is with a wildcard like so: ".+". I'm sure there is a better way, but I'm not seeing it. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

