Answered
Simple GREP deletion of lines
I'd need a simple find and delete duplicate lines for a 16K items column.
VARIABLE NUMBERS(\t)PAGE NUMBER\p)
Thank you for help
I'd need a simple find and delete duplicate lines for a 16K items column.
VARIABLE NUMBERS(\t)PAGE NUMBER\p)
Thank you for help
Solution (for newbies like me) has to follow these steps
1) clean the document from spaces, tabs etc. (use show hidden characters).
2) apply grep
find
^(.+\r)\1+
replace
$1
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.