regex - Capturing AES encrypted strings (including slashes) with Django URLs? -


i have encrypted string, nituk+n1ly2cjo1jlj9/vdsesld7aqpmwf4iefad3ao8yeiaypqb4tbehabgt0q+

how pass value variable?

my url configuration

url(r'^secure/(?p<code>[a-za-z0-9/\+]\w+)$', 'user.views.decrypt_url'), 

thanks

regexr

changed .* , works.

url(r'^secure/(?p<code>(.*))$', 'user.views.decrypt_url'), 

regexr


Comments

Popular posts from this blog

yii2 - Yii 2 Running a Cron in the basic template -

asp.net - 'System.Web.HttpContext' does not contain a definition for 'GetOwinContext' Mystery -

mercurial graft feature, can it copy? -