如何在EditPlus中使用列编辑

其实EditPlus GUI中是没有此功能的,但可以很简单的用Regex实现。

例子:需要在一列后面追加‘,’

48902252012
49009112010
48697121017
48539350015
48554479018

变为

48902252012,
49009112010,
48697121017,
48539350015,
48554479018,

使用

Find: "$" (without quotes)
Replace: "," (without quotes)

RegExp


参考: http://editplus.info/wiki/Regular_expression_syntax 

http://editplus.info/wiki/Search_and_Replace_Tricks

版权声明:本文为博主原创文章,未经博主允许不得转载。

原文地址:https://www.cnblogs.com/significantfrank/p/4875829.html