Hello, @alp-koski, @decoderman, @scott-sumner, @claudia-frank and All
Scott, a solution, a bit complex, for marking the last duplicates, of the user’s text, could be :
Duplicate all the text, just after the present one, by the actions Ctrl+A, Ctrl + Fin and Ctrl + V
On that copied text, exclusively :
Suppress all the lines, which do not have a duplicate, with the global regex replacement :
SEARCH
(?-s)^...(.+\R)(?s)(?!.*\R(?-s)...\1) and REPLACE
Leave EMPTY
Execute an ascending lexicographically sort ( Add a line break to the last sorted line, if necessary )
Suppress all the lines, which do have a duplicate, with the global regex replacement :
SEARCH
(?-s)(.+\R)\1+ and REPLACE
\1
At this point, the copied text should contain, only, all the lines of text, having duplicate(s)
Then, on all the file contents, perform the global mark action, with the regex :
SEARCH
(?-s)^....(.+\R)(?s)(?=.*\R(?-s)....\1)
Finally, delete the last part ( coming from the initial copied text )
Cheers,
guy038