EN
Remove duplicated rows in notepad++
3
points
1. Steps with how to remove duplicated rows in notepad++
- Open notepad++
- Go to 'Replace window' (ctrl + H)
- In Search Mode select 'Regular expression' radio button
- Enter in input
Find whatbelow regex:^(.*)(\r?\n\1)+$ - Enter in input
Replace withbelow line:$1 -
Click on
Replace Allbutton - Result before:
abc abc unique line 123 123 - Result after:
abc unique line 123
2. Screenshot with steps
3. Screenshot with results of this post