如何使用Python 3.0解析json转义字符串

时间:2016-09-21 17:01:58

标签: json python-3.x

我有一堆json转义字符串,例如

str = "what a war\/what a peace"

(转义不限于斜杠“/”)

我想将其解析为

"what a war/what a peace"

如何使用python 3.0进行操作?

1 个答案:

答案 0 :(得分:0)

是否有任何阻止您在字符串实例上使用内置replace的内容?

s = "what a war\/what a peace"
r = s.replace('\\', '')
print(r)
'what a war/what a peace'

作为附录,我在一个你想做的例子中知道这一点,但是,不要使用strlist等名称。你以后会后悔的。