我在 python 上找到了我的任务的解决方案。但我根本不知道python。代码:
import re
import json
a = open('test.txt').read()
a = re.sub('"[ \t]*"', '":"', a)
a = re.sub('"\s+"', '","', a)
a = re.sub('"\s+{', '":{', a)
a = re.sub('}\s+"', '},"', a)
a = '{%s}' % a
b = json.loads(a)
试图通过类比将其转换为php:
$a = file_get_contents('test.txt');
$a = preg_replace('"[ \t]*"', '":"', $a);
$a = preg_replace('"\s+"', '","', $a);
$a = preg_replace('"\s+{', '":{', $a);
$a = preg_replace('}\s+"', '},"', $a);
$a = '{'.$a.'}';
$b = json_decode($a);
但似乎表达方式是错误的。有人可以帮忙吗?