[Django]-Require minimum length of a variable in a django url

4👍

Changing the RegEx to{9,} should do it.

(r'^launch/(?P<app_id>[0-9A-Za-z]{9,})/*', 'mysite.views.launch_app'),

2👍

You can do: [0-9A-Za-z]{9,} to match 9 or more.

Leave a comment