How to replace column of values with another column of values in notepad++ For example , Let's say I have file 1 contents as below
name2.address2.age.location
name3.address5.age.location
name1.address1.age.location
name4.address4.age.location
and I want to replace address column with the new values from another file
A123
234
5678
adafsffsafasfa
so that my replaced contents look like this
name2.A123.age.location
name3.234.age.location
name1.5678.age.location
name4.adafsffsafasfa.age.location
I tried Alt+c and alt+shift combination, but that didn't help. Thanks for your time.