是否可以获取字符串,并将所有字符转换为Python转义序列?
答案 0 :(得分:5)
repr()
转义所有需要转义的字符
repr(string)
标准库中还有其他方法可用于转义URI等等
答案 1 :(得分:3)
支持str
和unicode
的完全转义(现在生成最短的转义序列):
def escape(s):
ch = (ord(c) for c in s)
return ''.join(('\\x%02x' % c) if c <= 255 else ('\\u%04x' % c) for c in ch)
for text in (u'\u2018\u2019hello there\u201c\u201d', 'hello there'):
esc = escape(text)
print esc
# code below is to verify by round-tripping
import ast
assert text == ast.literal_eval('u"' + esc + '"')
输出:
\u2018\u2019\x68\x65\x6c\x6c\x6f\x20\x74\x68\x65\x72\x65\u201c\u201d
\x68\x65\x6c\x6c\x6f\x20\x74\x68\x65\x72\x65