Eclipse中使用正则表达式批量替换数字的方法
程序员文章站
2023-12-05 10:30:04
Eclipse中使用正则表达式批量替换数字的方法...
在网上copy了一段codes,但里面codes的行前有行 号,此时一行行的删除行号,就麻烦了,根据小编这么多年的经验,其实只要是支持正则表达式的软件都可以替换,例如editplus,dreamweaver,emditor等
比如:
138 pdfptable table = new pdfptable(1);
139 table.setwidthpercentage(100);
140 table.sethorizontalalignment(pdfptable.align_left);
141 pdfpcell cell = new pdfpcell(new paragraph("暂无数据"));
142 cell.sethorizontalalignment(pdfpcell.align_center);
143 table.addcell(cell);
144 document.add(table);
使用eclipse的ctrl+f快捷键选择options--->regular expressions,在find中输入\d{1,}[ ]{4},点击replace all全部替换了,一键替换所有的行号.
其实:根据前面的代码,我们看到只要替换开头就是数字的任意长度的数字就可以了,如果数字后面加个.一样都是可以的。
下面的代码是editplus中常用的
代码如下:
大家可以参考修改即可。
比如:
138 pdfptable table = new pdfptable(1);
139 table.setwidthpercentage(100);
140 table.sethorizontalalignment(pdfptable.align_left);
141 pdfpcell cell = new pdfpcell(new paragraph("暂无数据"));
142 cell.sethorizontalalignment(pdfpcell.align_center);
143 table.addcell(cell);
144 document.add(table);
使用eclipse的ctrl+f快捷键选择options--->regular expressions,在find中输入\d{1,}[ ]{4},点击replace all全部替换了,一键替换所有的行号.
其实:根据前面的代码,我们看到只要替换开头就是数字的任意长度的数字就可以了,如果数字后面加个.一样都是可以的。
下面的代码是editplus中常用的
代码如下:
大家可以参考修改即可。