Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
149 views
in Technique[技术] by (71.8m points)

python - How to convert characters like x22 into a string?

I have a string that looks like this:

"{\x22username\x22:\x229\x22,\x22password\x22:\x226\x22,\x22id\x22:\x222c8bfa56-f5d9\x22, \x22FName\x22:\x22AnkQcAJyrqpg\x22}"

as far as I understand x22 is ". So how could I convert this into a readable JSON with quotes around keys and values?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Decode from string_escape:

>>> import json
>>> value = "{\x22username\x22:\x229\x22,\x22password\x22:\x226\x22,\x22id\x22:\x222c8bfa56-f5d9\x22, \x22FName\x22:\x22AnkQcAJyrqpg\x22}"
>>> value.decode('string_escape')
'{"username":"9","password":"6","id":"2c8bfa56-f5d9", "FName":"AnkQcAJyrqpg"}'
>>> json.loads(value.decode('string_escape'))
{u'username': u'9', u'password': u'6', u'id': u'2c8bfa56-f5d9', u'FName': u'AnkQcAJyrqpg'}

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...