Tautvydas
Tautvydas

Reputation: 1288

How to add a character in every end of all lines with notepad++

Basicaly title says it all, mine file looks like this:

"edit Product",""Home > Opto-electronics > LED > Standard LED, Multicolour"","2226",""KINGBRIGHT LED, 3MM, HE-RED/GRN L-93WEGW"",""SC07621"","197
"edit Product",""Home > Resistors > Fixed"","2228",""VISHAY DRALORIC RESISTOR, 0402, 5%, 10K0 CRCW040210K0JNEAIF"",""RE06211"","50
"edit Product",""Home > Resistors > Fixed"","2229",""VISHAY DRALORIC RESISTOR, 0402, 5%, 3R90 CRCW04023R90JNEAIF"",""RE06212"","-1
"edit Product",""Home > Resistors > Fixed"","2230",""VISHAY DRALORIC RESISTOR, 0402, 5%, 2R70 CRCW04022R70JNEAIF"",""RE06220"","25

And I need it to look like this:

"edit Product",""Home > Opto-electronics > LED > Standard LED, Multicolour"","2226",""KINGBRIGHT LED, 3MM, HE-RED/GRN L-93WEGW"",""SC07621"","197
"edit Product",""Home > Resistors > Fixed"","2228",""VISHAY DRALORIC RESISTOR, 0402, 5%, 10K0 CRCW040210K0JNEAIF"",""RE06211"","50**"**
"edit Product",""Home > Resistors > Fixed"","2229",""VISHAY DRALORIC RESISTOR, 0402, 5%, 3R90 CRCW04023R90JNEAIF"",""RE06212"","-1**"**
"edit Product",""Home > Resistors > Fixed"","2230",""VISHAY DRALORIC RESISTOR, 0402, 5%, 2R70 CRCW04022R70JNEAIF"",""RE06220"","25**"**

Upvotes: 2

Views: 28443

Answers (1)

rekire
rekire

Reputation: 47945

Press ctrl + h check enter as Find what \n, set Replace with as "\n and set the Search Mode as Extended.

That should work.

Upvotes: 6

Related Questions