Notepad ++ clones every line

I have a file that includes such lines

111
112
113

I want to clone strings and add a separator between numbers. The output should be as follows

111#111
112#112
113#113

How to do this with notepadd ++ using regex replacement

+3
source share
1 answer

To find (.+)

Replace \1#\1

It will work

+2
source

All Articles