[Tutor] convert '\\t' to '\t'

Alfred Milgrom fredm@smartypantsco.com
Thu Jan 16 01:10:06 2003


 >> Could anyone please give me some tips on converting things like '\\t' 
into '\t'?

I am not sure that's really your question. If it's just a simple string 
substitution, you can use

textstring = 'something or other containing //t'
textstring = textstring.replace('//', '/')

But I suspect you actually want to do something else.
Fred Milgrom