Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking to remove duplicate phrases from any give string.

Example:

My_First_Post_My_First_Post.htm

Would have the phrase "My_First_Post" in there twice, thus becoming:

My_First_Post_.htm

Any easy way to do this?

share|improve this question
5  
How long does a substring have to be in order to be considered a phrase? For instance, would "Hello world" collapse down to "Helo world"? – Adam Mihalcin Apr 8 '12 at 0:13
@Adam Yeah I'm definitely planning to implement a minimum. I'm guessing 10 consecutive characters would do. – natli Apr 8 '12 at 0:16
1  
What is the maximum distance between phrases? If somebody has "Hello World [100 chars] Hello World", does it condense into "Hello World [100 chars] "? – Waleed Khan Apr 8 '12 at 0:18
@arxanas Max distance would be two characters. One would still count. – natli Apr 8 '12 at 0:22
1  
Why is this question rated -2? It seems like a valid question to me. – Waleed Khan Apr 8 '12 at 0:35
show 1 more comment

1 Answer

up vote 10 down vote accepted

You can try regular expressions - careful about efficiency for sure, though:

Regex re = new Regex(@"(?<m>(.+))(.*?)\k<m>", RegexOptions.Compiled);
string str = "My_First_Post_My_First_Post.htm";

re.Replace(str, "$1$2"); // My_First_Post_.htm

It removes the first, longest, repeated sequence. To make it at least 10 characters, e.g., change the first group to:

(?<m>(.{10,}))

To restrict the distance between characters to 2, e.g., change the second group to:

(.{,2}?)

For 1 character, just put (.??).

share|improve this answer
1  
Can you explain what it is trying to do? – L.B Apr 8 '12 at 0:20
@L.B: It replaces the longest repeated sequence with only one instance of the repeated sequence. – rynah Apr 8 '12 at 0:20
Is there any way to alter this so that the max distance between the phrases would be one character? So if there's, as an example, "hi" in between the identical phrases, it would not remove anything. I'm not sure if it already does.. regex makes my head hurt. – natli Apr 8 '12 at 0:26
@natli: Just added it :) – rynah Apr 8 '12 at 0:26
@minitech Thanks! Did you test your code by the way? On my end str is still My_First_Post_My_First_Post.htm after the regex replace. – natli Apr 8 '12 at 0:33
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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