On Jun 5, 2006, at 10:26 PM, John M wrote:
>
> Ok, so im gong through the turtorial and trying to adopt it to my own
> project, and I see this  in urlpatterns:
>
> (r`^polls/$'....),
> (r'^polls/(\d+)/$'....)
>
> how does that differ from
>
> (r'^polls/'....),
> (r'^polls/(\d+)/$'....)
>
> Note the $ is missing from the first line of the second example.
>
> When you don't have a $  in the polls/ setup, it doesn't scan down to
> the other entries.
>
> Since I'm so new to python and web stuff, was wondering if anyone  
> could
> explain this.

This is a regular expression issue. $ matches the end of the input,  
so if you leave it off (as in the second example), everything that  
starts with (the ^ matches the beginning of the input)

polls/

would match. As you can see, that's true of everything that would  
match the second pattern, so nothing will ever get to the second  
pattern because it will match the first one.

This site

http://www.regular-expressions.info/

has an extensive tutorial of regexes. (Note also that the r in front  
of the expression string means that the string is a raw expression.  
Otherwise you'd have to type \\ every time you meant \.)

HTH,
Todd

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to