Remove repeated words (phrases)

Advanced Renamer forum
#1 : 30/08-18 16:14
Chong
Chong
Posts: 1
At first I can't find a working method for my case..., search around find this reference:
"https://www.advancedrenamer.com/forum_thread?for um_id=4581"

after trying out.... below is my solution to share... :)


From:
A Fox Jumps over the Road A Fox Jumps over the Road.mp3
The Black Cat The Black Cat.mp3
This a repeated words test repeated.txt
This a repeated words test repeated Copy.txt
repeated repeated This a words test Copy

To:
A Fox Jumps over the Road.mp3
The Black Cat.mp3
This a repeated words test.txt
This a repeated words test Copy.txt
repeated This a words test Copy

Combined method 1&2
Method (1 of 2)
Text to be replaced:
(.+ ) \1
Replace with:
\1
Use regular expression: Tick

Method (2 of 2)
Text to be replaced:
(.+) (.+) \1
Replace with:
\1 \2
Use regular expression: Tick




30/08-18 16:14