我有一个字符串:
str = 'View:{
Name:"View1",
Image:{
BackgroundImage:"Image.gif",
Position: [0, 0],
Width: 320,
Height: 480
},
Button:{
BackgroundImage:"Button.gif",
Transition:"View2",
Position: [49, 80],
Width: 216,
Height: 71
},
Button:{
BackgroundImage:"Button2.gif",
Position: [65, 217],
Width: 188,
Height: 134
},'
我使用这个正则表达式将'_#'添加到在它们末尾带有':{'的元素
var i = 0;
str = str.replace(/([^:]+):{/g, function(m, p1) { return p1 + "_" + (++i).toString() + ":{"; });
输出
str = 'View_1:{
Name:"View1",
Image_2:{
BackgroundImage:"Image.gif",
Position: [0, 0],
Width: 320,
Height: 480
},
Button_3:{
BackgroundImage:"Button.gif",
Transition:"View2",
Position: [49, 80],
Width: 216,
Height: 71
},
Button_4:{
BackgroundImage:"Button2.gif",
Position: [65, 217],
Width: 188,
Height: 134
},'
然后我用它做了很多东西,现在我需要从中删除'#'。我将如何删除那些'#'
不是cessary,但我遇到的另一个问题是第一个正则表达式从0开始递增并为每个元素提供下一个递增的数字。我试图使它成为每个元素在其类型上递增。 像这样:
str = 'View_1:{
Name:"View1",
Image_1:{
BackgroundImage:"Image.gif",
Position: [0, 0],
Width: 320,
Height: 480
},
Button_1:{
BackgroundImage:"Button.gif",
Transition:"View2",
Position: [49, 80],
Width: 216,
Height: 71
},
Button_2:{
BackgroundImage:"Button2.gif",
Position: [65, 217],
Width: 188,
Height: 134
},'
关于我在这里做错什么的任何输入?
答案 0 :(得分:1)
对于第一个问题,只需将_\d+:{
替换为:{
对于第二种,每种类型都需要一个单独的计数器。试试这个:
var i = {};
str = str.replace(/([^:]+):{/g, function(m, p1) {
i[p1] = (i[p1] || 0)+1;
return p1 + "_" + i[p1].toString() + ":{";
});