[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.python

Re: Create a backslash-escaped version of a string?

aahz

2/13/2010 3:27:00 PM

In article <aa6966f8-4dda-4e5b-ab7c-828faaff6ee3@36g2000yqu.googlegroups.com>,
boblatest <boblatest@googlemail.com> wrote:
>
>I'd like to have control characters in a string to be converted to
>their backslash-escaped counterparts. I looked in the encoders section
>of the string module but couldn't find anything appropriate. I could
>write it myself but I'm sure something of the sort exists. The
>hypothetical method "c_escaped()" would work like this:
>
>>>> a="abc\rdef"
>>>> print a.c_escaped()
>abc\rdef
>>>>

This is a little different from what you want, but just for the sake of
completeness:

>>> print repr(a)[1:-1]
abc\rdef
--
Aahz (aahz@pythoncraft.com) <*> http://www.python...

"At Resolver we've found it useful to short-circuit any doubt and just
refer to comments in code as 'lies'. :-)"