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
To find (.+)
(.+)
Replace \1#\1
\1#\1
It will work