标签: python regex
JSON { “data”:“{”id“:”123“,”unit“:”metric“,”location“:”NYC“}” }
需要
{ “data”:“{'id':'123','unit':'metric','location':'NYC'}” }
基本上,双引号内的任何双引号都需要成为单引号
尝试
import re re.sub('\w[: ]*"\w','',str)
不起作用