如何将值列替换为notepad++中的另一列值--例如,假设我有以下文件1的内容
name2.address2.age.location
name3.address5.age.location
name1.address1.age.location
name4.address4.age.location
我希望用另一个文件中的新值替换address列。
A123
234
5678
adafsffsafasfa
所以我替换的内容如下所示
name2.A123.age.location
name3.234.age.location
name1.5678.age.location
name4.adafsffsafasfa.age.location
我尝试了Alt+c和alt+shift的组合,但这并没有帮助。耽误您时间,实在对不起。
发布于 2016-05-31 08:36:31
我在玩,不小心发现了解决问题的方法。要替换一列,请执行以下步骤:
1. Select the column using "`Shift + Alt + Down`" key combination
2. Then delete the column by pressing the "`Delete`" key.
3. Select "new" column using "`Shift + Alt + Down`" key combination
4. Do the `drag` while holding down the `Alt` key.
附图是为了更清晰的动画。
Alt drag
也可以用来移动列的位置。
https://stackoverflow.com/questions/37537509
复制相似问题