With Notepad ++, how can I add text to the beginning of a specific line (like line 3) in multiple files?
Consider the following file structure:
File1:
this.is.the.first.key=blah
me.is.second=blahblah
blahblahblah
i.is.fourth=blahblahblahblah
j=sok
i=oakfoasskf
o=sdofkogdk
this is missing a variable
This structure exists in several files, each of which contains the same keys (or missing keys), while the values are translated according to the file name (one file is _en, the other is _de, etc.). I want to add keys to all lines that they are missing
(I saw a lot of answers that suggested using RegEx to select strings, but there was nothing about choosing a specific row ).
source
share