我希望增加一个正则表达式。它有望改变〜870个实例
<input type="checkbox" class="a" name="Check29"/>
<input type="checkbox" class="bpa" name="Check234"/>
<input type="checkbox" class="av" name="Check1"/>
<input type="checkbox" class="ipa" name="Check74"/>
<input type="checkbox" class="a" name="Check34"/>
(此处有可读性的额外空间)
<input type="checkbox" class="a" name="Check1"/>
<input type="checkbox" class="bpa" name="Check2"/>
<input type="checkbox" class="av" name="Check3"/>
<input type="checkbox" class="ipa" name="Check4"/>
<input type="checkbox" class="a" name="Check5"/>
正则表达式
<input type="checkbox" class="([a-z]+)" name="Check[0-9]+"\/>
替换为
<input type="checkbox" class="$1" name="Check????"\/>
我的希望是能够改变????到记事本++中的增量计数器查找和替换。它可以挽救很多头痛,让我不必算得太高。我发现了关于这个主题的随机帖子,但似乎都没有。