On Oct 16, 8:13 am, "Jeremy Dunck" <[EMAIL PROTECTED]> wrote:
> On 10/16/07, Pythoni <[EMAIL PROTECTED]> wrote:
> ...
>
> > so I have in urls.py
> > (r'^Myscript/(?P<Name>\w+)/','miproject.apps.mi.views.mi.Myscript'),
>
> > it works only if Name is one word, e.g. John.
>
> You'll see documentation of python's re syntax
> here:http://docs.python.org/lib/re-syntax.html
>
> Based on that, \w is indeed only these chars:
> [a-zA-Z0-9_]
>
> You can extend the character class to accept spaces as well like so:
> [\w ]+
>
> So this would work for your purpose:
> (r'^Myscript/(?P<Name>[\w ]+)/','miproject.apps.mi.views.mi.Myscript'),
Jeremy,
Thanks a lot for help.It works well for , e.g. John Smith
but what if a user inserts John.Smith ( period instead of space)?
I tried to add a period
(r'^Myscript/(?P<Name>[\w .]
+)/','miproject.apps.mi.views.mi.Myscript'),
but it did not work.Any idea why?
Thank you
B.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
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
-~----------~----~----~----~------~----~------~--~---