[google-appengine] Re: please help with special characters

2009-01-29 Thread Geoffrey Spear

\ is an escape character so you either need to escape it ('\\') or use
a raw string (r'\')

On Jan 29, 3:36 pm, Aramaki  wrote:
> Hi, my code needs to trim special characters from users imput but
> there is one I can't
>
> how can I trim '\' from a string without error
>
> chr(92) doesn't work, ord () throw an error when facing ' \ ' and I
> don't really see how to implement unicode formating in that way.
>
> I am sure that wiht 2-3 line this must be done but I don't see the
> way.
>
> I will apreciate any help, thanks
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---



[google-appengine] Re: please help with special characters

2009-01-29 Thread Alexander Kojevnikov

http://www.python.org/doc/2.5.2/ref/strings.html

On Jan 30, 7:36 am, Aramaki  wrote:
> Hi, my code needs to trim special characters from users imput but
> there is one I can't
>
> how can I trim '\' from a string without error
>
> chr(92) doesn't work, ord () throw an error when facing ' \ ' and I
> don't really see how to implement unicode formating in that way.
>
> I am sure that wiht 2-3 line this must be done but I don't see the
> way.
>
> I will apreciate any help, thanks
--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---