出了什么问题,正如一个例子所解释的:
form = 'some other [1][2] data ... data[Company][c_list][2][name_2] ... some other data';
form.replace(new RegExp('[c_list][2]', 'g'), '[c_list][1]');
得到:data[Company][c_list][2][name[c_list][1]]
需要:data[Company][c_list][1][name_2]
我的代码有什么问题?
谢谢