Remove everything after and including certain word

A swapping-ground for Regular Expression syntax

Remove everything after and including certain word

Postby MisterM23 » Fri Jun 16, 2023 1:46 pm

Hi

I have many files with the same naming format as: BananaTheBigBananaHat.pdf

I want to remove the word "The" and everything after it from the filenames.

I found this post which is meant to do exactly that: viewtopic.php?p=14676

But for whatever reason, I can't get it to work using:

Match: (.+)\bThe
Replace: \1

Am I right in just putting "(.+)\bThe" in the Match box and "\1" in the Replace box? When I preview, I am told "There are no selected items that need renaming".

Probably missing somethign obviously daft?

Many thnaks

Mr M
MisterM23
 
Posts: 2
Joined: Fri Jun 16, 2023 1:38 pm

Re: Remove everything after and including certain word

Postby MisterM23 » Fri Jun 16, 2023 2:27 pm

Figured it out...

Match: (.*?)The.*
Replace: \1

:)
MisterM23
 
Posts: 2
Joined: Fri Jun 16, 2023 1:38 pm


Return to Regular Expressions