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?
|
I'm looking to remove duplicate phrases from any give string. Example:
Would have the phrase "My_First_Post" in there twice, thus becoming:
Any easy way to do this? |
|||||||||||||||||
|
|
You can try regular expressions - careful about efficiency for sure, though:
It removes the first, longest, repeated sequence. To make it at least 10 characters, e.g., change the first group to:
To restrict the distance between characters to 2, e.g., change the second group to:
For 1 character, just put |
|||||||||||||
|