Regex help for renaming files

Please check the FAQ (https://www.xyplorer.com/faq.php) before posting a question...
Post Reply
xycool
Posts: 6
Joined: 27 Oct 2018 20:02

Regex help for renaming files

Post by xycool »

Hello guys, I'm kinda newbie to XYPlorer
i've been trying it figure out how to rename this using regex but no luck

before :
renee taylor - NEW intergalactical Stories (20 Stories of You Know What).epub

after :
renee taylor - (20 Stories of You Know What) NEW intergalactical Stories.epub

it looks like simple thou its challging for me :)

anyone help me please?

highend
Posts: 13327
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Regex help for renaming files

Post by highend »

Code: Select all

(.*?) - (.*?) (\(.*?\)) > $1 - $3 $2
One of my scripts helped you out? Please donate via Paypal

xycool
Posts: 6
Joined: 27 Oct 2018 20:02

Re: Regex help for renaming files

Post by xycool »

highend! thank you so much :)

could I ask you one more qestion please? :)
is it possible to remove the Parentheses?

before :
renee taylor - NEW intergalactical Stories (20 Stories of You Know What).epub

after
renee taylor - 20 Stories of You Know What NEW intergalactical Stories.epub

highend
Posts: 13327
Joined: 06 Feb 2011 00:33
Location: Win Server 2022 @100%

Re: Regex help for renaming files

Post by highend »

Code: Select all

(.*?) - (.*?) \((.*?)\) > $1 - $3 $2
One of my scripts helped you out? Please donate via Paypal

xycool
Posts: 6
Joined: 27 Oct 2018 20:02

Re: Regex help for renaming files

Post by xycool »

highend !! thank you again :)

have a good time!

Post Reply