我正在看一些正则表达式,但我的表现很短
我正在使用Notepad ++编辑很多字段
数据看起来像这样
CmntStatus += row[""];
TcKey += row[""];
但是,我想将第一个值复制到右引号
最终结果:
CmntStatus += row["CmntStatus "];
TcKey += row["TcKey "];
我在尝试
^1 += row["$1"];
答案 0 :(得分:1)
找到:^(.*) \+= row\[""\];
替换为:(\1) += row["\1"];