On Mar 19, 1:14 pm, bipul21 <[email protected]> wrote:
> Hello,
>
> Right now,
> I am using
> ('/something/([-\w]+)',somethingHandler)
>
> But i need a regular expressions
> to match url but i want a handler for url
> /something/id=Sometexthere
>
> and
> /something/id=sometexthere&keys=some1%some2%some3
>
> Thanks in advance

Don't reinvent the wheel; use /something?
id=sometexthere&keys=some1+some2+some3 and let your framework handle
the parameters.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" 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/google-appengine?hl=en.

Reply via email to