2008
01.21

If you are looking to remove duplicate lines from an alphabetized list this code will do the trick:

**Find the duplicate lines**

    ^(.*)(\r?\n\1)+$

**Replace with a single line**

    $1

No Comment.

Add Your Comment