我有这个字符串
var newtypegraph=newtypegraph.replace(' "type":"bar3d" ',' "type":"area" ');
我想将bar3d作为通配符。
答案 0 :(得分:1)
这看起来像JavaScript,所以你可以使用正则表达式:
var newtypegraph = newtypegraph.replace(/"type":".*?"/g, '"type":"area"');
这看起来像JSON对象的属性。这是JSON吗?