在python中用双引号替换双引号

时间:2018-02-12 14:14:50

标签: python regex

JSON     {       “data”:“{”id“:”123“,”unit“:”metric“,”location“:”NYC“}”     }

需要

{   “data”:“{'id':'123','unit':'metric','location':'NYC'}” }

基本上,双引号内的任何双引号都需要成为单引号

尝试

import re
re.sub('\w[: ]*"\w','',str)

不起作用

0 个答案:

没有答案