vote up 2 vote down star
1

Not use any programming language. Only use regular expression. is it possible?

For example input>>

11
22
22  <-must remove
33
44
44  <-must remove
55

Output>>

11
22
33
44
55
flag

72% accept rate
7  
Regular expressions are executed by some program (SED, PERL, PYTHON, JAVA, something). The "not use any programming language" doesn't make any sense. What program runs the regular expression? – S.Lott Oct 15 at 16:08
Yes, and besides what S.Lott said, you have to specify better what do you mean by "remove". Remove all occurrences of duplicate lines? Or remove all-but-one? If the latter, which one would you like to preserve, the first or the last? Or the order doesn't matter? – Davide Oct 15 at 16:37
And finally, should run in a single pass, or multiple passes are allowed? – Davide Oct 15 at 16:37
I'm using RegexBuddy v3.0. – ebattulga Oct 16 at 8:59
2  
@ebattulga: I agree with others. You cannot ask a regular expression question that is language agnostic. The underlying regex engine matters greatly. – Jim G. Oct 16 at 20:03
show 1 more comment

2 Answers

vote up 6 vote down

Regular-expressions.info has a page on Deleting Duplicate Lines From a File

link|flag
vote up 1 vote down

See my request for more info, I'm answering in the easy way now.

  1. If the order doesn't matter, just a

    sort -u

    will do the trick

  2. If the order does matter but you don't mind re-run multiple passes (this is vim syntax), you can use:

    %s/\(.*\)\(\_.*\)\(\1\)/\2\1/g

    to preserve the last occurrence, or

    %s/\(.*\)\(\_.*\)\(\1\)/\1\2/g

    to preserve the first occurrence.

If you do mind re-run multiple passes, than it's more difficult, so before we work on that, please say so in the question!

EDIT: in your edit you weren't very clear, but it looks like you want just a single-pass duplicate ADJACENT lines removal! Well, that's much easier!

A simple:

/(.*)\1*/\1/

(/\(.*\)\1*/\1/ in vim) i.e. searching for (.*)\1* and replacing it with just \1 will do the trick

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.