Notepad ++重新编号
有没有办法(正则表达式或其他选项)自动将ID重新编号为1,2等等,如下例所示? <comment id="53" status="new"> <comment id="54" status="new"> <comment id="55" status="new"> 对此: <comment id="1" status="new"> <comment id="2" status="new"> <comment id="3" status="new"> 我试图在下面的评论中使用链接中的Python脚本。我为上面的代码量身定做了它看起来像这样: def calculate(match): return 'comment id="%s"' % (match.group(1), str(int(match.group(2))-52)) editor.rereplace('comment id="([0-9]+)"', calculate) 它什么都不做。为什么?我做错了什么?