simple string question

jwither jwither at sxder4kmju.com
Mon Sep 7 03:17:24 EDT 2009


"Chris Rebert" <clp2 at rebertia.com> wrote in message 
news:mailman.1075.1252306208.2854.python-list at python.org...
> On Sun, Sep 6, 2009 at 10:29 PM, jwither<jwither at sxder4kmju.com> wrote:
>> Given a string (read from a file) which contains raw escape sequences,
>> (specifically, slash n), what is the best way to convert that to a parsed
>> string, where the escape sequence has been replaced (specifically, by a
>> NEWLINE token)?
>
> There's probably a more general method covering all the escape
> sequences, but for just \n:
>
> your_string = your_string.replace("\\n", "\n")
>
> Cheers,
> Chris
> --
> http://blog.rebertia.com


Thanks!  (the others are more likely to be errors than deliberate anyway)

James Withers 





More information about the Python-list mailing list