如何在EditPlus中使用列編輯
其實EditPlus GUI中是沒有此功能的,但可以很簡單的用Regex實現。
例子:需要在一列後麵追加‘,’
將
48902252012
49009112010
48697121017
48539350015
48554479018
變為
48902252012,
49009112010,
48697121017,
48539350015,
48554479018,
使用
Find: "$" (without quotes)
Replace: "," (without quotes)
RegExp
參考: https://editplus.info/wiki/Regular_expression_syntax
https://editplus.info/wiki/Search_and_Replace_Tricks
最後更新:2017-04-03 22:15:39